From 40c3159e6cfcf3a21b1a316afee7ebe765372053 Mon Sep 17 00:00:00 2001 From: JoyerJin <116236375+JoyerJin@users.noreply.github.com> Date: Tue, 27 May 2025 10:12:10 +0800 Subject: [PATCH 01/14] [PS] Migrate SelfHelp module to autorest v4 (#27839) --- .../Properties/AssemblyInfo.cs | 26 ++++++ src/SelfHelp/SelfHelp.Autorest/README.md | 16 ++-- .../UX/Microsoft.Help/solutions.json | 33 ------- .../UX/Microsoft.Help/troubleshooters.json | 37 +------- .../SelfHelp.Autorest/docs/Az.SelfHelp.md | 16 ++-- .../docs/Get-AzSelfHelpDiagnostic.md | 3 +- .../docs/Get-AzSelfHelpDiscoverySolution.md | 2 +- .../docs/Get-AzSelfHelpSimplifiedSolution.md | 3 +- .../docs/Get-AzSelfHelpSolution.md | 3 +- .../docs/Get-AzSelfHelpSolutionSelfHelp.md | 3 +- .../docs/Get-AzSelfHelpTroubleshooter.md | 7 +- .../Invoke-AzSelfHelpCheckNameAvailability.md | 56 +++++++----- ...Invoke-AzSelfHelpContinueTroubleshooter.md | 59 +++++++++--- ...lpDiscoverySolutionNlpSubscriptionScope.md | 67 ++++++++------ ...SelfHelpDiscoverySolutionNlpTenantScope.md | 51 +++++++++-- .../docs/Invoke-AzSelfHelpWarmSolutionUp.md | 54 +++++++++-- .../docs/New-AzSelfHelpDiagnostic.md | 84 +++++++++++++++-- .../docs/New-AzSelfHelpSimplifiedSolution.md | 81 +++++++++++++++-- .../docs/New-AzSelfHelpSolution.md | 84 +++++++++++++++-- .../docs/New-AzSelfHelpTroubleshooter.md | 80 +++++++++++++++-- .../docs/Restart-AzSelfHelpTroubleshooter.md | 3 +- .../docs/Stop-AzSelfHelpTroubleshooter.md | 1 - .../docs/Update-AzSelfHelpSolution.md | 60 ++++++++++--- .../SelfHelp.Autorest/generate-info.json | 2 +- .../SelfHelp.Autorest/resources/README.md | 11 +++ src/SelfHelp/SelfHelp.sln | 89 +++++++++++++++++-- src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 | 12 +-- src/SelfHelp/SelfHelp/ChangeLog.md | 1 + src/SelfHelp/SelfHelp/help/Az.SelfHelp.md | 14 +-- .../SelfHelp/help/Get-AzSelfHelpDiagnostic.md | 3 +- .../help/Get-AzSelfHelpDiscoverySolution.md | 2 +- .../help/Get-AzSelfHelpSimplifiedSolution.md | 3 +- .../SelfHelp/help/Get-AzSelfHelpSolution.md | 3 +- .../help/Get-AzSelfHelpSolutionSelfHelp.md | 3 +- .../help/Get-AzSelfHelpTroubleshooter.md | 7 +- .../Invoke-AzSelfHelpCheckNameAvailability.md | 54 ++++++----- ...Invoke-AzSelfHelpContinueTroubleshooter.md | 61 ++++++++++--- ...lpDiscoverySolutionNlpSubscriptionScope.md | 67 ++++++++------ ...SelfHelpDiscoverySolutionNlpTenantScope.md | 51 +++++++++-- .../help/Invoke-AzSelfHelpWarmSolutionUp.md | 56 ++++++++++-- .../SelfHelp/help/New-AzSelfHelpDiagnostic.md | 86 ++++++++++++++++-- .../help/New-AzSelfHelpSimplifiedSolution.md | 83 +++++++++++++++-- .../SelfHelp/help/New-AzSelfHelpSolution.md | 85 ++++++++++++++++-- .../help/New-AzSelfHelpTroubleshooter.md | 80 +++++++++++++++-- .../help/Restart-AzSelfHelpTroubleshooter.md | 3 +- .../help/Stop-AzSelfHelpTroubleshooter.md | 1 - .../help/Update-AzSelfHelpSolution.md | 62 ++++++++++--- 47 files changed, 1295 insertions(+), 373 deletions(-) create mode 100644 src/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs create mode 100644 src/SelfHelp/SelfHelp.Autorest/resources/README.md diff --git a/src/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs b/src/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..2aaa55258b53 --- /dev/null +++ b/src/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// 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. +// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +// is regenerated. + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] +[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] +[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - SelfHelp")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("0.2.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("0.2.1")] +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] +[assembly: System.CLSCompliantAttribute(false)] diff --git a/src/SelfHelp/SelfHelp.Autorest/README.md b/src/SelfHelp/SelfHelp.Autorest/README.md index 75899e66513f..362df70cf713 100644 --- a/src/SelfHelp/SelfHelp.Autorest/README.md +++ b/src/SelfHelp/SelfHelp.Autorest/README.md @@ -46,25 +46,19 @@ module-version: 0.1.0 title: SelfHelp subject-prefix: $(service-name) -# If there are post APIs for some kinds of actions in the RP, you may need to -# uncomment following line to support viaIdentity for these post APIs -# identity-correction-for-post: true -resourcegroup-append: true -nested-object-to-string: true - -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" - directive: # Following is two common directive which are normally required in all the RPs # 1. Remove the unexpanded parameter set # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well - where: - variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString)) remove: true # Remove the set-* cmdlet - where: verb: Set remove: true + - where: + verb: Update + subject: Diagnostic|SimplifiedSolution|Troubleshooter + remove: true ``` diff --git a/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/solutions.json b/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/solutions.json index 467168dd47ab..670c99f4d5ad 100644 --- a/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/solutions.json +++ b/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/solutions.json @@ -37,39 +37,6 @@ ] } ] - }, - { - "name": "Invoke-AzSelfHelpWarmSolutionUp", - "description": "Warm up the solution resource by preloading asynchronous diagnostics results into cache", - "path": "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", - "help": { - "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpwarmsolutionup" - }, - "parameterSets": [ - { - "parameters": [ - "-Scope ", - "-SolutionResourceName " - ] - } - ] - }, - "examples": [ - { - "description": "Warm up the solution resource by preloading asynchronous diagnostics results into cache", - "parameters": [ - { - "name": "-Scope", - "value": "[Path.scope]" - }, - { - "name": "-SolutionResourceName", - "value": "[Path.solutionResourceName]" - } - ] - } - ] } ] } diff --git a/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/troubleshooters.json b/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/troubleshooters.json index d97c2a006635..556872a5fa14 100644 --- a/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/troubleshooters.json +++ b/src/SelfHelp/SelfHelp.Autorest/UX/Microsoft.Help/troubleshooters.json @@ -7,7 +7,7 @@ "commands": [ { "name": "Get-AzSelfHelpTroubleshooter", - "description": "Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow.\nThis API requires the Troubleshooter resource name that was created using the Create API.", + "description": "Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow.\nThis API requires the Troubleshooter resource name that was created using the get API.", "path": "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", "help": { "learnMore": { @@ -24,7 +24,7 @@ }, "examples": [ { - "description": "Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the Create API.", + "description": "Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the get API.", "parameters": [ { "name": "-Name", @@ -38,39 +38,6 @@ } ] }, - { - "name": "Invoke-AzSelfHelpContinueTroubleshooter", - "description": "Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.\n
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process.\nThis API is used after the Troubleshooter has been created using the Create API.", - "path": "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", - "help": { - "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpcontinuetroubleshooter" - }, - "parameterSets": [ - { - "parameters": [ - "-Scope ", - "-TroubleshooterName " - ] - } - ] - }, - "examples": [ - { - "description": "Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.", - "parameters": [ - { - "name": "-Scope", - "value": "[Path.scope]" - }, - { - "name": "-TroubleshooterName", - "value": "[Path.troubleshooterName]" - } - ] - } - ] - }, { "name": "Restart-AzSelfHelpTroubleshooter", "description": "Restarts the troubleshooter API using applicable troubleshooter resource name as the input.
It returns new resource name which should be used in subsequent request.\nThe old resource name is obsolete after this API is invoked.", diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Az.SelfHelp.md b/src/SelfHelp/SelfHelp.Autorest/docs/Az.SelfHelp.md index 1eb4292cad83..4fc82bef2877 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Az.SelfHelp.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Az.SelfHelp.md @@ -1,6 +1,6 @@ --- Module Name: Az.SelfHelp -Module Guid: 2705ffd2-39d8-491f-b0c6-14fca2dc3727 +Module Guid: 7d65b6ab-a31c-4bd0-a352-36f483643432 Download Help Link: https://learn.microsoft.com/powershell/module/az.selfhelp Help Version: 1.0.0.0 Locale: en-US @@ -30,7 +30,7 @@ These are static self help content to help users troubleshoot their issues. ### [Get-AzSelfHelpTroubleshooter](Get-AzSelfHelpTroubleshooter.md) Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.\
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. ### [Invoke-AzSelfHelpCheckNameAvailability](Invoke-AzSelfHelpCheckNameAvailability.md) This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions @@ -38,7 +38,7 @@ This API is used to check the uniqueness of a resource name used for a diagnosti ### [Invoke-AzSelfHelpContinueTroubleshooter](Invoke-AzSelfHelpContinueTroubleshooter.md) Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name. \
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. ### [Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope](Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md) Solution discovery using natural language processing. @@ -50,18 +50,18 @@ Solution discovery using natural language processing. Warm up the solution resource by preloading asynchronous diagnostics results into cache ### [New-AzSelfHelpDiagnostic](New-AzSelfHelpDiagnostic.md) -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. \
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.\
\
\Note: \ ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. ### [New-AzSelfHelpSimplifiedSolution](New-AzSelfHelpSimplifiedSolution.md) -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response. \
\
\Note:\ \
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API. \
### [New-AzSelfHelpSolution](New-AzSelfHelpSolution.md) -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. \
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -74,7 +74,7 @@ In the absence of the ‘requiredParameters’ it is likely that some of the sol ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters ### [New-AzSelfHelpTroubleshooter](New-AzSelfHelpTroubleshooter.md) -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. \
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -88,5 +88,5 @@ The old resource name is obsolete after this API is invoked. Ends the troubleshooter action ### [Update-AzSelfHelpSolution](Update-AzSelfHelpSolution.md) -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiagnostic.md b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiagnostic.md index ea3a87a229a0..03bf377f76cb 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiagnostic.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiagnostic.md @@ -61,7 +61,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -114,7 +113,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiscoverySolution.md b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiscoverySolution.md index 3ae79be9562d..d12456a0a818 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiscoverySolution.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpDiscoverySolution.md @@ -97,7 +97,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSimplifiedSolution.md b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSimplifiedSolution.md index 26196808b7e6..06f8dfc83d80 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSimplifiedSolution.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSimplifiedSolution.md @@ -64,7 +64,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -117,7 +116,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolution.md b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolution.md index 63444d9b5f5b..f64482f138a3 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolution.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolution.md @@ -61,7 +61,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -114,7 +113,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolutionSelfHelp.md b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolutionSelfHelp.md index 6c735cb6ca4f..3651d9e82982 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolutionSelfHelp.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpSolutionSelfHelp.md @@ -64,7 +64,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -103,7 +102,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpTroubleshooter.md index 21abd95a55a0..4269cf01e556 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Get-AzSelfHelpTroubleshooter.md @@ -9,7 +9,7 @@ schema: 2.0.0 ## SYNOPSIS Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.\
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. ## SYNTAX @@ -26,7 +26,7 @@ Get-AzSelfHelpTroubleshooter -InputObject [-DefaultProfile < ## DESCRIPTION Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.\
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. ## EXAMPLES @@ -65,7 +65,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -118,7 +117,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpCheckNameAvailability.md b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpCheckNameAvailability.md index d883e02db2dd..1d58fa256b69 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpCheckNameAvailability.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpCheckNameAvailability.md @@ -25,17 +25,16 @@ Invoke-AzSelfHelpCheckNameAvailability -Scope [-WhatIf] [] ``` -### PostViaIdentity +### PostViaJsonFilePath ``` -Invoke-AzSelfHelpCheckNameAvailability -InputObject - -CheckNameAvailabilityRequest [-DefaultProfile ] [-Confirm] - [-WhatIf] [] +Invoke-AzSelfHelpCheckNameAvailability -Scope -JsonFilePath [-DefaultProfile ] + [-Confirm] [-WhatIf] [] ``` -### PostViaIdentityExpanded +### PostViaJsonString ``` -Invoke-AzSelfHelpCheckNameAvailability -InputObject [-Name ] [-Type ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] +Invoke-AzSelfHelpCheckNameAvailability -Scope -JsonString [-DefaultProfile ] + [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -67,11 +66,10 @@ Checks if resource name is avilabale/unique for the scope or not ### -CheckNameAvailabilityRequest The check availability request body. -To construct, see NOTES section for CHECKNAMEAVAILABILITYREQUEST properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest -Parameter Sets: Post, PostViaIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest +Parameter Sets: Post Aliases: Required: True @@ -97,19 +95,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -JsonFilePath +Path of Json file supplied to the Post operation ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity -Parameter Sets: PostViaIdentity, PostViaIdentityExpanded +Type: System.String +Parameter Sets: PostViaJsonFilePath Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False Accept wildcard characters: False ``` @@ -118,7 +130,7 @@ The name of the resource for which availability needs to be checked. ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -133,7 +145,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: Post, PostExpanded +Parameter Sets: (All) Aliases: Required: True @@ -148,7 +160,7 @@ The resource type. ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -194,13 +206,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest - -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpContinueTroubleshooter.md b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpContinueTroubleshooter.md index e9cc6bc27bd9..cbf5ea2bcddb 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpContinueTroubleshooter.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpContinueTroubleshooter.md @@ -10,7 +10,7 @@ schema: 2.0.0 ## SYNOPSIS Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name. \
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. ## SYNTAX @@ -42,10 +42,22 @@ Invoke-AzSelfHelpContinueTroubleshooter -InputObject [-Confirm] [-WhatIf] [] ``` +### ContinueViaJsonFilePath +``` +Invoke-AzSelfHelpContinueTroubleshooter -Scope -TroubleshooterName -JsonFilePath + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### ContinueViaJsonString +``` +Invoke-AzSelfHelpContinueTroubleshooter -Scope -TroubleshooterName -JsonString + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name. \
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. ## EXAMPLES @@ -70,10 +82,9 @@ You can see the status of the troubleshooter step by using `Get-AzSelfHelpTroubl ### -ContinueRequestBody Troubleshooter ContinueRequest body. -To construct, see NOTES section for CONTINUEREQUESTBODY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody Parameter Sets: Continue, ContinueViaIdentity Aliases: @@ -102,7 +113,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -116,6 +126,36 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Continue operation + +```yaml +Type: System.String +Parameter Sets: ContinueViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Continue operation + +```yaml +Type: System.String +Parameter Sets: ContinueViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PassThru Returns true when the command succeeds @@ -133,10 +173,9 @@ Accept wildcard characters: False ### -Response . -To construct, see NOTES section for RESPONSE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[] Parameter Sets: ContinueExpanded, ContinueViaIdentityExpanded Aliases: @@ -152,7 +191,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: Continue, ContinueExpanded +Parameter Sets: Continue, ContinueExpanded, ContinueViaJsonFilePath, ContinueViaJsonString Aliases: Required: True @@ -182,7 +221,7 @@ Troubleshooter resource Name. ```yaml Type: System.String -Parameter Sets: Continue, ContinueExpanded +Parameter Sets: Continue, ContinueExpanded, ContinueViaJsonFilePath, ContinueViaJsonString Aliases: Required: True @@ -228,7 +267,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody ### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md index b6cb6d91e89f..b118f253b17a 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md @@ -25,17 +25,15 @@ Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -DiscoverSolutionRequest [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` -### PostViaIdentity +### PostViaJsonFilePath ``` -Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -InputObject - -DiscoverSolutionRequest [-DefaultProfile ] [-Confirm] [-WhatIf] - [] +Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -JsonFilePath [-SubscriptionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` -### PostViaIdentityExpanded +### PostViaJsonString ``` -Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -InputObject - [-AdditionalContext ] [-IssueSummary ] [-ResourceId ] [-ServiceId ] +Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -JsonString [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` @@ -62,7 +60,7 @@ Additional information in the form of a string. ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -90,11 +88,10 @@ Accept wildcard characters: False ### -DiscoverSolutionRequest Discover NLP request. -To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest -Parameter Sets: Post, PostViaIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest +Parameter Sets: Post Aliases: Required: True @@ -104,31 +101,45 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -IssueSummary +Describe the issue with the affected resource. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity -Parameter Sets: PostViaIdentity, PostViaIdentityExpanded +Type: System.String +Parameter Sets: PostExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonFilePath Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False Accept wildcard characters: False ``` -### -IssueSummary -Describe the issue with the affected resource. +### -JsonString +Json string supplied to the Post operation ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostViaJsonString Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -140,7 +151,7 @@ Provide resourceId of affected resource ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -152,11 +163,11 @@ Accept wildcard characters: False ### -ServiceId Service Classification id for the resource. -You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response +You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -172,7 +183,7 @@ The value must be an UUID. ```yaml Type: System.String -Parameter Sets: Post, PostExpanded +Parameter Sets: (All) Aliases: Required: False @@ -218,13 +229,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest - -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md index 2205c082f1b5..e67bd362887e 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md @@ -25,6 +25,18 @@ Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -DiscoverSolutionRequest ] [-Confirm] [-WhatIf] [] ``` +### PostViaJsonFilePath +``` +Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -JsonFilePath [-DefaultProfile ] + [-Confirm] [-WhatIf] [] +``` + +### PostViaJsonString +``` +Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -JsonString [-DefaultProfile ] [-Confirm] + [-WhatIf] [] +``` + ## DESCRIPTION Solution discovery using natural language processing. @@ -76,10 +88,9 @@ Accept wildcard characters: False ### -DiscoverSolutionRequest Discover NLP request. -To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest Parameter Sets: Post Aliases: @@ -105,6 +116,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceId Provide resourceId of affected resource @@ -122,7 +163,7 @@ Accept wildcard characters: False ### -ServiceId Service Classification id for the resource. -You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response +You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ```yaml Type: System.String @@ -172,11 +213,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpWarmSolutionUp.md b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpWarmSolutionUp.md index 56d728a725ad..56d042dd6134 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpWarmSolutionUp.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Invoke-AzSelfHelpWarmSolutionUp.md @@ -38,6 +38,18 @@ Invoke-AzSelfHelpWarmSolutionUp -InputObject [-Parameter ] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### WarmViaJsonFilePath +``` +Invoke-AzSelfHelpWarmSolutionUp -Scope -SolutionResourceName -JsonFilePath + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### WarmViaJsonString +``` +Invoke-AzSelfHelpWarmSolutionUp -Scope -SolutionResourceName -JsonString + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Warm up the solution resource by preloading asynchronous diagnostics results into cache @@ -78,7 +90,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -92,6 +103,36 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Warm operation + +```yaml +Type: System.String +Parameter Sets: WarmViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Warm operation + +```yaml +Type: System.String +Parameter Sets: WarmViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Parameter Dictionary of \ @@ -127,7 +168,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: Warm, WarmExpanded +Parameter Sets: Warm, WarmExpanded, WarmViaJsonFilePath, WarmViaJsonString Aliases: Required: True @@ -142,7 +183,7 @@ Solution resource Name. ```yaml Type: System.String -Parameter Sets: Warm, WarmExpanded +Parameter Sets: Warm, WarmExpanded, WarmViaJsonFilePath, WarmViaJsonString Aliases: Required: True @@ -154,10 +195,9 @@ Accept wildcard characters: False ### -SolutionWarmUpRequestBody Solution WarmUpRequest body -To construct, see NOTES section for SOLUTIONWARMUPREQUESTBODY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody Parameter Sets: Warm, WarmViaIdentity Aliases: @@ -204,10 +244,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody - ### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody + ## OUTPUTS ### System.Boolean diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpDiagnostic.md b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpDiagnostic.md index c758a3ef206a..77855075d4d9 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpDiagnostic.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpDiagnostic.md @@ -8,19 +8,39 @@ schema: 2.0.0 # New-AzSelfHelpDiagnostic ## SYNOPSIS -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. \
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.\
\
\Note: \ ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpDiagnostic -Scope -SResourceName [-GlobalParameter ] [-Insight ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityExpanded +``` +New-AzSelfHelpDiagnostic -InputObject [-GlobalParameter ] + [-Insight ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpDiagnostic -Scope -SResourceName -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzSelfHelpDiagnostic -Scope -SResourceName -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. \
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.\
\
\Note: \ ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. ## EXAMPLES @@ -79,7 +99,7 @@ Global parameters is an optional map which can be used to add key and value to r ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -89,13 +109,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Insight SolutionIds that are needed to be invoked. -To construct, see NOTES section for INSIGHT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -105,6 +139,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -125,7 +189,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -140,7 +204,7 @@ Unique resource name for insight resources ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: DiagnosticsResourceName Required: True @@ -186,9 +250,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSimplifiedSolution.md b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSimplifiedSolution.md index 35133cb9b4f3..d8ecc91cac55 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSimplifiedSolution.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSimplifiedSolution.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzSelfHelpSimplifiedSolution ## SYNOPSIS -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response. \
\
\Note:\ \
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API. @@ -16,14 +16,34 @@ In the absence of the ‘Parameters’ it is likely that some of the simplified ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpSimplifiedSolution -Scope -SResourceName [-Parameter ] [-SolutionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityExpanded +``` +New-AzSelfHelpSimplifiedSolution -InputObject [-Parameter ] + [-SolutionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpSimplifiedSolution -Scope -SResourceName -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzSelfHelpSimplifiedSolution -Scope -SResourceName -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response. \
\
\Note:\ \
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API. @@ -84,6 +104,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -104,7 +169,7 @@ Client input parameters to run Simplified Solutions ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -119,7 +184,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -134,7 +199,7 @@ Solution Id to identify single Simplified Solution. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -149,7 +214,7 @@ Simplified Solutions Resource Name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: SimplifiedSolutionsResourceName Required: True @@ -195,9 +260,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSolution.md b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSolution.md index 1c2c86acf277..60d8b856a5ad 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSolution.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpSolution.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzSelfHelpSolution ## SYNOPSIS -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. \
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -22,14 +22,34 @@ In the absence of the ‘requiredParameters’ it is likely that some of the sol ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpSolution -ResourceName -Scope [-Parameter ] [-TriggerCriterion ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityExpanded +``` +New-AzSelfHelpSolution -InputObject [-Parameter ] + [-TriggerCriterion ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpSolution -ResourceName -Scope -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzSelfHelpSolution -ResourceName -Scope -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. \
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -98,6 +118,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -118,7 +183,7 @@ Client input parameters to run Solution ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -133,7 +198,7 @@ Solution resource Name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: SolutionResourceName Required: True @@ -148,7 +213,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -160,11 +225,10 @@ Accept wildcard characters: False ### -TriggerCriterion Solution request trigger criteria -To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -210,9 +274,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpTroubleshooter.md index d2b52f775bd9..7e035415f0b1 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/New-AzSelfHelpTroubleshooter.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzSelfHelpTroubleshooter ## SYNOPSIS -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. \
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -16,13 +16,32 @@ Troubleshooters terminate at a well curated solution based off of resource backe ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpTroubleshooter -Name -Scope [-Parameter ] [-SolutionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityExpanded +``` +New-AzSelfHelpTroubleshooter -InputObject [-Parameter ] [-SolutionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpTroubleshooter -Name -Scope -JsonFilePath + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzSelfHelpTroubleshooter -Name -Scope -JsonString [-DefaultProfile ] + [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. \
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -66,12 +85,57 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Troubleshooter resource Name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: TroubleshooterName Required: True @@ -86,7 +150,7 @@ Client input parameters to run Troubleshooter Resource ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -101,7 +165,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -116,7 +180,7 @@ Solution Id to identify single troubleshooter. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -162,9 +226,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Restart-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp.Autorest/docs/Restart-AzSelfHelpTroubleshooter.md index bf040bb10584..c389943dbb2a 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Restart-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Restart-AzSelfHelpTroubleshooter.md @@ -69,7 +69,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -153,7 +152,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Stop-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp.Autorest/docs/Stop-AzSelfHelpTroubleshooter.md index 5a3694d583d3..8fb5f6b10a58 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Stop-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Stop-AzSelfHelpTroubleshooter.md @@ -60,7 +60,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity diff --git a/src/SelfHelp/SelfHelp.Autorest/docs/Update-AzSelfHelpSolution.md b/src/SelfHelp/SelfHelp.Autorest/docs/Update-AzSelfHelpSolution.md index cc4d217d979f..73cb87a922b0 100644 --- a/src/SelfHelp/SelfHelp.Autorest/docs/Update-AzSelfHelpSolution.md +++ b/src/SelfHelp/SelfHelp.Autorest/docs/Update-AzSelfHelpSolution.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzSelfHelpSolution ## SYNOPSIS -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution ## SYNTAX @@ -26,8 +26,20 @@ Update-AzSelfHelpSolution -InputObject [-Parameter ] ``` +### UpdateViaJsonFilePath +``` +Update-AzSelfHelpSolution -ResourceName -Scope -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzSelfHelpSolution -ResourceName -Scope -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution ## EXAMPLES @@ -86,7 +98,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -100,6 +111,36 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -120,7 +161,7 @@ Client input parameters to run Solution ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -135,7 +176,7 @@ Solution resource Name. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: SolutionResourceName Required: True @@ -150,7 +191,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -162,11 +203,10 @@ Accept wildcard characters: False ### -TriggerCriterion Solution request trigger criteria -To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -216,7 +256,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ## NOTES diff --git a/src/SelfHelp/SelfHelp.Autorest/generate-info.json b/src/SelfHelp/SelfHelp.Autorest/generate-info.json index c3115e8be3e7..c8dbd3a63439 100644 --- a/src/SelfHelp/SelfHelp.Autorest/generate-info.json +++ b/src/SelfHelp/SelfHelp.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "673a2be0-2ac0-446e-a557-5cb7bd0bec5c" + "generate_Id": "14962a8a-9a35-47c6-8892-dc7a0a2fde6e" } diff --git a/src/SelfHelp/SelfHelp.Autorest/resources/README.md b/src/SelfHelp/SelfHelp.Autorest/resources/README.md new file mode 100644 index 000000000000..937f07f8fec2 --- /dev/null +++ b/src/SelfHelp/SelfHelp.Autorest/resources/README.md @@ -0,0 +1,11 @@ +# Resources +This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. + +## Info +- Modifiable: yes +- Generated: no +- Committed: yes +- Packaged: no + +## Purpose +Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. \ No newline at end of file diff --git a/src/SelfHelp/SelfHelp.sln b/src/SelfHelp/SelfHelp.sln index 0d5df0f4f669..38fb1d0a954a 100644 --- a/src/SelfHelp/SelfHelp.sln +++ b/src/SelfHelp/SelfHelp.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 @@ -19,49 +19,119 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelfHelp", "SelfHelp\SelfHelp.csproj", "{FAB33C2B-CCA9-4DD5-9013-8845672F878B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.SelfHelp", "..\..\generated\SelfHelp\SelfHelp.Autorest\Az.SelfHelp.csproj", "{F6B61F7E-C2DB-4854-A574-9AFD0BE59DB7}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SelfHelp.Autorest", "SelfHelp.Autorest", "{A4CA456C-04BD-49E7-5DB8-F4CE92DBC1DA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.SelfHelp", "..\..\generated\SelfHelp\SelfHelp.Autorest\Az.SelfHelp.csproj", "{4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Debug|x64.ActiveCfg = Debug|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Debug|x64.Build.0 = Debug|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Debug|x86.ActiveCfg = Debug|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Debug|x86.Build.0 = Debug|Any CPU {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Release|Any CPU.ActiveCfg = Release|Any CPU {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Release|Any CPU.Build.0 = Release|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Release|x64.ActiveCfg = Release|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Release|x64.Build.0 = Release|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Release|x86.ActiveCfg = Release|Any CPU + {9CCD204D-1E93-42B0-B792-7BFCF7461384}.Release|x86.Build.0 = Release|Any CPU {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Debug|x64.ActiveCfg = Debug|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Debug|x64.Build.0 = Debug|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Debug|x86.ActiveCfg = Debug|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Debug|x86.Build.0 = Debug|Any CPU {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Release|Any CPU.ActiveCfg = Release|Any CPU {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Release|Any CPU.Build.0 = Release|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Release|x64.ActiveCfg = Release|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Release|x64.Build.0 = Release|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Release|x86.ActiveCfg = Release|Any CPU + {2BA444C3-ECCB-4D50-89FA-F7446AD4E26A}.Release|x86.Build.0 = Release|Any CPU {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Debug|x64.ActiveCfg = Debug|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Debug|x64.Build.0 = Debug|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Debug|x86.ActiveCfg = Debug|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Debug|x86.Build.0 = Debug|Any CPU {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Release|Any CPU.ActiveCfg = Release|Any CPU {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Release|Any CPU.Build.0 = Release|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Release|x64.ActiveCfg = Release|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Release|x64.Build.0 = Release|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Release|x86.ActiveCfg = Release|Any CPU + {8C2A53F5-FD92-4FE4-9C7F-713B31B2C09B}.Release|x86.Build.0 = Release|Any CPU {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Debug|x64.ActiveCfg = Debug|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Debug|x64.Build.0 = Debug|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Debug|x86.ActiveCfg = Debug|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Debug|x86.Build.0 = Debug|Any CPU {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Release|Any CPU.ActiveCfg = Release|Any CPU {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Release|Any CPU.Build.0 = Release|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Release|x64.ActiveCfg = Release|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Release|x64.Build.0 = Release|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Release|x86.ActiveCfg = Release|Any CPU + {CC6D5DC9-4969-4B34-B356-917B3B69E9B7}.Release|x86.Build.0 = Release|Any CPU {9337614C-A070-495C-AED4-3053E0DD2A6A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9337614C-A070-495C-AED4-3053E0DD2A6A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Debug|x64.ActiveCfg = Debug|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Debug|x64.Build.0 = Debug|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Debug|x86.ActiveCfg = Debug|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Debug|x86.Build.0 = Debug|Any CPU {9337614C-A070-495C-AED4-3053E0DD2A6A}.Release|Any CPU.ActiveCfg = Release|Any CPU {9337614C-A070-495C-AED4-3053E0DD2A6A}.Release|Any CPU.Build.0 = Release|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Release|x64.ActiveCfg = Release|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Release|x64.Build.0 = Release|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Release|x86.ActiveCfg = Release|Any CPU + {9337614C-A070-495C-AED4-3053E0DD2A6A}.Release|x86.Build.0 = Release|Any CPU {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Debug|x64.ActiveCfg = Debug|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Debug|x64.Build.0 = Debug|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Debug|x86.ActiveCfg = Debug|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Debug|x86.Build.0 = Debug|Any CPU {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Release|Any CPU.ActiveCfg = Release|Any CPU {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Release|Any CPU.Build.0 = Release|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Release|x64.ActiveCfg = Release|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Release|x64.Build.0 = Release|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Release|x86.ActiveCfg = Release|Any CPU + {063580AB-5E1E-4FBD-A9F8-EF6498B0466B}.Release|x86.Build.0 = Release|Any CPU {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Debug|x64.ActiveCfg = Debug|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Debug|x64.Build.0 = Debug|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Debug|x86.ActiveCfg = Debug|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Debug|x86.Build.0 = Debug|Any CPU {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Release|Any CPU.ActiveCfg = Release|Any CPU {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Release|Any CPU.Build.0 = Release|Any CPU - {F6B61F7E-C2DB-4854-A574-9AFD0BE59DB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F6B61F7E-C2DB-4854-A574-9AFD0BE59DB7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F6B61F7E-C2DB-4854-A574-9AFD0BE59DB7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F6B61F7E-C2DB-4854-A574-9AFD0BE59DB7}.Release|Any CPU.Build.0 = Release|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Release|x64.ActiveCfg = Release|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Release|x64.Build.0 = Release|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Release|x86.ActiveCfg = Release|Any CPU + {FAB33C2B-CCA9-4DD5-9013-8845672F878B}.Release|x86.Build.0 = Release|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Debug|x64.ActiveCfg = Debug|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Debug|x64.Build.0 = Debug|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Debug|x86.ActiveCfg = Debug|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Debug|x86.Build.0 = Debug|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Release|Any CPU.Build.0 = Release|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Release|x64.ActiveCfg = Release|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Release|x64.Build.0 = Release|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Release|x86.ActiveCfg = Release|Any CPU + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {9CCD204D-1E93-42B0-B792-7BFCF7461384} = {EAEC5C8A-2B43-4894-91D7-2216FF9613C2} @@ -70,5 +140,6 @@ Global {CC6D5DC9-4969-4B34-B356-917B3B69E9B7} = {EAEC5C8A-2B43-4894-91D7-2216FF9613C2} {9337614C-A070-495C-AED4-3053E0DD2A6A} = {EAEC5C8A-2B43-4894-91D7-2216FF9613C2} {063580AB-5E1E-4FBD-A9F8-EF6498B0466B} = {EAEC5C8A-2B43-4894-91D7-2216FF9613C2} + {4B5537D0-906A-4EB0-AAEC-B6EF26CFD5D3} = {A4CA456C-04BD-49E7-5DB8-F4CE92DBC1DA} EndGlobalSection EndGlobal diff --git a/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 b/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 index 2c639b8a848a..1ed14273259e 100644 --- a/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 +++ b/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/26/2025 # @{ @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'SelfHelp.Autorest/bin/Az.SelfHelp.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -# ScriptsToProcess = @() +ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() +TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'SelfHelp.Autorest/Az.SelfHelp.format.ps1xml' @@ -105,7 +105,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','SelfHelp' + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'SelfHelp' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -130,7 +130,7 @@ PrivateData = @{ } # End of PSData hashtable - } # End of PrivateData hashtable +} # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/SelfHelp/SelfHelp/ChangeLog.md b/src/SelfHelp/SelfHelp/ChangeLog.md index 04a4a9b18b8d..39883b50fa46 100644 --- a/src/SelfHelp/SelfHelp/ChangeLog.md +++ b/src/SelfHelp/SelfHelp/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). ## Version 0.2.1 * Upgraded nuget package to signed package. diff --git a/src/SelfHelp/SelfHelp/help/Az.SelfHelp.md b/src/SelfHelp/SelfHelp/help/Az.SelfHelp.md index 0cf68c4150af..495e76828d45 100644 --- a/src/SelfHelp/SelfHelp/help/Az.SelfHelp.md +++ b/src/SelfHelp/SelfHelp/help/Az.SelfHelp.md @@ -30,7 +30,7 @@ These are static self help content to help users troubleshoot their issues. ### [Get-AzSelfHelpTroubleshooter](Get-AzSelfHelpTroubleshooter.md) Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.\
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. ### [Invoke-AzSelfHelpCheckNameAvailability](Invoke-AzSelfHelpCheckNameAvailability.md) This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions @@ -38,7 +38,7 @@ This API is used to check the uniqueness of a resource name used for a diagnosti ### [Invoke-AzSelfHelpContinueTroubleshooter](Invoke-AzSelfHelpContinueTroubleshooter.md) Uses 'stepId' and 'responses' as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name. \
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. ### [Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope](Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md) Solution discovery using natural language processing. @@ -50,18 +50,18 @@ Solution discovery using natural language processing. Warm up the solution resource by preloading asynchronous diagnostics results into cache ### [New-AzSelfHelpDiagnostic](New-AzSelfHelpDiagnostic.md) -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. \
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.\
\
\Note: \ 'requiredInputs' from Discovery solutions response must be passed via 'additionalParameters' as an input to Diagnostics API. ### [New-AzSelfHelpSimplifiedSolution](New-AzSelfHelpSimplifiedSolution.md) -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. In the absence of the 'Parameters' it is likely that some of the simplified Solutions might fail execution, and you might see an empty response. \
\
\Note:\ \
1. 'requiredInputs' from Discovery solutions response must be passed via 'parameters' in the request body of simplified Solutions API. \
### [New-AzSelfHelpSolution](New-AzSelfHelpSolution.md) -Creates a solution for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. \
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -74,7 +74,7 @@ In the absence of the 'requiredParameters' it is likely that some of the solutio 'requiredParameters' from the Solutions response is the same as 'properties.parameters' in the request for Troubleshooters ### [New-AzSelfHelpTroubleshooter](New-AzSelfHelpTroubleshooter.md) -Creates the specific troubleshooter action under a resource or subscription using the 'solutionId' and 'properties.parameters' as the trigger. +create the specific troubleshooter action under a resource or subscription using the 'solutionId' and 'properties.parameters' as the trigger. \
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -88,5 +88,5 @@ The old resource name is obsolete after this API is invoked. Ends the troubleshooter action ### [Update-AzSelfHelpSolution](Update-AzSelfHelpSolution.md) -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution diff --git a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiagnostic.md b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiagnostic.md index 24ec03a2f2d0..b072a1f893a5 100644 --- a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiagnostic.md +++ b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiagnostic.md @@ -62,7 +62,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -115,7 +114,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiscoverySolution.md b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiscoverySolution.md index bbf71e7fc380..d1eff4e95c43 100644 --- a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiscoverySolution.md +++ b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpDiscoverySolution.md @@ -97,7 +97,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSimplifiedSolution.md b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSimplifiedSolution.md index b29a7e33f742..e28913232d92 100644 --- a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSimplifiedSolution.md +++ b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSimplifiedSolution.md @@ -64,7 +64,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -117,7 +116,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolution.md b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolution.md index 9eb02e9e4609..39d841ec9aa8 100644 --- a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolution.md +++ b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolution.md @@ -62,7 +62,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -115,7 +114,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolutionSelfHelp.md b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolutionSelfHelp.md index fdb1098a5908..b6bc00d5031f 100644 --- a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolutionSelfHelp.md +++ b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpSolutionSelfHelp.md @@ -65,7 +65,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -104,7 +103,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpTroubleshooter.md index 9e01871306be..71a58d0dadb6 100644 --- a/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp/help/Get-AzSelfHelpTroubleshooter.md @@ -9,7 +9,7 @@ schema: 2.0.0 ## SYNOPSIS Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.\
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. ## SYNTAX @@ -27,7 +27,7 @@ Get-AzSelfHelpTroubleshooter -InputObject [-DefaultProfile < ## DESCRIPTION Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.\
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. ## EXAMPLES @@ -65,7 +65,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -118,7 +117,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpCheckNameAvailability.md b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpCheckNameAvailability.md index dcdb2dc3d50b..09752c96c5e3 100644 --- a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpCheckNameAvailability.md +++ b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpCheckNameAvailability.md @@ -25,16 +25,15 @@ Invoke-AzSelfHelpCheckNameAvailability -Scope [-WhatIf] [-Confirm] [] ``` -### PostViaIdentityExpanded +### PostViaJsonFilePath ``` -Invoke-AzSelfHelpCheckNameAvailability -InputObject [-Name ] [-Type ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Invoke-AzSelfHelpCheckNameAvailability -Scope -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` -### PostViaIdentity +### PostViaJsonString ``` -Invoke-AzSelfHelpCheckNameAvailability -InputObject - -CheckNameAvailabilityRequest [-DefaultProfile ] +Invoke-AzSelfHelpCheckNameAvailability -Scope -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -67,11 +66,10 @@ Checks if resource name is avilabale/unique for the scope or not ### -CheckNameAvailabilityRequest The check availability request body. -To construct, see NOTES section for CHECKNAMEAVAILABILITYREQUEST properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest -Parameter Sets: Post, PostViaIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest +Parameter Sets: Post Aliases: Required: True @@ -97,19 +95,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -JsonFilePath +Path of Json file supplied to the Post operation ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity -Parameter Sets: PostViaIdentityExpanded, PostViaIdentity +Type: System.String +Parameter Sets: PostViaJsonFilePath Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False Accept wildcard characters: False ``` @@ -118,7 +130,7 @@ The name of the resource for which availability needs to be checked. ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -133,7 +145,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: PostExpanded, Post +Parameter Sets: (All) Aliases: Required: True @@ -148,7 +160,7 @@ The resource type. ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -194,13 +206,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest - -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpContinueTroubleshooter.md b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpContinueTroubleshooter.md index 07339cc217e1..4911fb5fcf2e 100644 --- a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpContinueTroubleshooter.md +++ b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpContinueTroubleshooter.md @@ -10,7 +10,7 @@ schema: 2.0.0 ## SYNOPSIS Uses 'stepId' and 'responses' as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name. \
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. ## SYNTAX @@ -21,6 +21,20 @@ Invoke-AzSelfHelpContinueTroubleshooter -Scope -TroubleshooterName ] ``` +### ContinueViaJsonString +``` +Invoke-AzSelfHelpContinueTroubleshooter -Scope -TroubleshooterName -JsonString + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### ContinueViaJsonFilePath +``` +Invoke-AzSelfHelpContinueTroubleshooter -Scope -TroubleshooterName -JsonFilePath + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### Continue ``` Invoke-AzSelfHelpContinueTroubleshooter -Scope -TroubleshooterName @@ -45,7 +59,7 @@ Invoke-AzSelfHelpContinueTroubleshooter -InputObject ## DESCRIPTION Uses 'stepId' and 'responses' as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name. \
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. ## EXAMPLES @@ -70,10 +84,9 @@ You can see the status of the troubleshooter step by using `Get-AzSelfHelpTroubl ### -ContinueRequestBody Troubleshooter ContinueRequest body. -To construct, see NOTES section for CONTINUEREQUESTBODY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody Parameter Sets: Continue, ContinueViaIdentity Aliases: @@ -102,7 +115,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -116,6 +128,36 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Continue operation + +```yaml +Type: System.String +Parameter Sets: ContinueViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Continue operation + +```yaml +Type: System.String +Parameter Sets: ContinueViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PassThru Returns true when the command succeeds @@ -133,10 +175,9 @@ Accept wildcard characters: False ### -Response . -To construct, see NOTES section for RESPONSE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[] Parameter Sets: ContinueExpanded, ContinueViaIdentityExpanded Aliases: @@ -152,7 +193,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: ContinueExpanded, Continue +Parameter Sets: ContinueExpanded, ContinueViaJsonString, ContinueViaJsonFilePath, Continue Aliases: Required: True @@ -182,7 +223,7 @@ Troubleshooter resource Name. ```yaml Type: System.String -Parameter Sets: ContinueExpanded, Continue +Parameter Sets: ContinueExpanded, ContinueViaJsonString, ContinueViaJsonFilePath, Continue Aliases: Required: True @@ -228,7 +269,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody ### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity diff --git a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md index 8fd160b3ac86..78a914b7a3b8 100644 --- a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md +++ b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md @@ -26,18 +26,16 @@ Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope [-SubscriptionId [-WhatIf] [-Confirm] [] ``` -### PostViaIdentityExpanded +### PostViaJsonFilePath ``` -Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -InputObject - [-AdditionalContext ] [-IssueSummary ] [-ResourceId ] [-ServiceId ] +Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope [-SubscriptionId ] -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### PostViaIdentity +### PostViaJsonString ``` -Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -InputObject - -DiscoverSolutionRequest [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope [-SubscriptionId ] -JsonString + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -63,7 +61,7 @@ Additional information in the form of a string. ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -91,11 +89,10 @@ Accept wildcard characters: False ### -DiscoverSolutionRequest Discover NLP request. -To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest -Parameter Sets: Post, PostViaIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest +Parameter Sets: Post Aliases: Required: True @@ -105,31 +102,45 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -IssueSummary +Describe the issue with the affected resource. + +```yaml +Type: System.String +Parameter Sets: PostExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Post operation ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity -Parameter Sets: PostViaIdentityExpanded, PostViaIdentity +Type: System.String +Parameter Sets: PostViaJsonFilePath Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False Accept wildcard characters: False ``` -### -IssueSummary -Describe the issue with the affected resource. +### -JsonString +Json string supplied to the Post operation ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostViaJsonString Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -141,7 +152,7 @@ Provide resourceId of affected resource ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -153,11 +164,11 @@ Accept wildcard characters: False ### -ServiceId Service Classification id for the resource. -You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list Service Id is the GUID which can be found under name field in Services List response +You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ```yaml Type: System.String -Parameter Sets: PostExpanded, PostViaIdentityExpanded +Parameter Sets: PostExpanded Aliases: Required: False @@ -173,7 +184,7 @@ The value must be an UUID. ```yaml Type: System.String -Parameter Sets: PostExpanded, Post +Parameter Sets: (All) Aliases: Required: False @@ -219,13 +230,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest - -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md index 0ccee9e4bf12..0dfaf97693d3 100644 --- a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md +++ b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.md @@ -25,6 +25,18 @@ Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -DiscoverSolutionRequest ] [-WhatIf] [-Confirm] [] ``` +### PostViaJsonFilePath +``` +Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### PostViaJsonString +``` +Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -JsonString [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION Solution discovery using natural language processing. @@ -76,10 +88,9 @@ Accept wildcard characters: False ### -DiscoverSolutionRequest Discover NLP request. -To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest Parameter Sets: Post Aliases: @@ -105,6 +116,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Post operation + +```yaml +Type: System.String +Parameter Sets: PostViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceId Provide resourceId of affected resource @@ -122,7 +163,7 @@ Accept wildcard characters: False ### -ServiceId Service Classification id for the resource. -You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list Service Id is the GUID which can be found under name field in Services List response +You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ```yaml Type: System.String @@ -172,11 +213,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpWarmSolutionUp.md b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpWarmSolutionUp.md index 0949d277f40e..6cdf99fa50f1 100644 --- a/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpWarmSolutionUp.md +++ b/src/SelfHelp/SelfHelp/help/Invoke-AzSelfHelpWarmSolutionUp.md @@ -19,6 +19,20 @@ Invoke-AzSelfHelpWarmSolutionUp -Scope -SolutionResourceName [ [] ``` +### WarmViaJsonString +``` +Invoke-AzSelfHelpWarmSolutionUp -Scope -SolutionResourceName -JsonString + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### WarmViaJsonFilePath +``` +Invoke-AzSelfHelpWarmSolutionUp -Scope -SolutionResourceName -JsonFilePath + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### Warm ``` Invoke-AzSelfHelpWarmSolutionUp -Scope -SolutionResourceName @@ -80,7 +94,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -94,6 +107,36 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Warm operation + +```yaml +Type: System.String +Parameter Sets: WarmViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Warm operation + +```yaml +Type: System.String +Parameter Sets: WarmViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Parameter Dictionary of \ @@ -129,7 +172,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: WarmExpanded, Warm +Parameter Sets: WarmExpanded, WarmViaJsonString, WarmViaJsonFilePath, Warm Aliases: Required: True @@ -144,7 +187,7 @@ Solution resource Name. ```yaml Type: System.String -Parameter Sets: WarmExpanded, Warm +Parameter Sets: WarmExpanded, WarmViaJsonString, WarmViaJsonFilePath, Warm Aliases: Required: True @@ -156,10 +199,9 @@ Accept wildcard characters: False ### -SolutionWarmUpRequestBody Solution WarmUpRequest body -To construct, see NOTES section for SOLUTIONWARMUPREQUESTBODY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody Parameter Sets: Warm, WarmViaIdentity Aliases: @@ -206,10 +248,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody - ### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody + ## OUTPUTS ### System.Boolean diff --git a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpDiagnostic.md b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpDiagnostic.md index be4fbf9acaa9..b746c9f8d6e6 100644 --- a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpDiagnostic.md +++ b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpDiagnostic.md @@ -8,19 +8,41 @@ schema: 2.0.0 # New-AzSelfHelpDiagnostic ## SYNOPSIS -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. \
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.\
\
\Note: \ 'requiredInputs' from Discovery solutions response must be passed via 'additionalParameters' as an input to Diagnostics API. ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpDiagnostic -SResourceName -Scope [-GlobalParameter ] [-Insight ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzSelfHelpDiagnostic -SResourceName -Scope -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpDiagnostic -SResourceName -Scope -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaIdentityExpanded +``` +New-AzSelfHelpDiagnostic -InputObject [-GlobalParameter ] + [-Insight ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. \
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.\
\
\Note: \ 'requiredInputs' from Discovery solutions response must be passed via 'additionalParameters' as an input to Diagnostics API. ## EXAMPLES @@ -79,7 +101,7 @@ Global parameters is an optional map which can be used to add key and value to r ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -89,13 +111,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Insight SolutionIds that are needed to be invoked. -To construct, see NOTES section for INSIGHT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -105,6 +141,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -125,7 +191,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -140,7 +206,7 @@ Unique resource name for insight resources ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: DiagnosticsResourceName Required: True @@ -186,9 +252,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSimplifiedSolution.md b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSimplifiedSolution.md index ade0caa79367..756c5a45a623 100644 --- a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSimplifiedSolution.md +++ b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSimplifiedSolution.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzSelfHelpSimplifiedSolution ## SYNOPSIS -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. In the absence of the 'Parameters' it is likely that some of the simplified Solutions might fail execution, and you might see an empty response. \
\
\Note:\ \
1. 'requiredInputs' from Discovery solutions response must be passed via 'parameters' in the request body of simplified Solutions API. @@ -16,14 +16,36 @@ In the absence of the 'Parameters' it is likely that some of the simplified Solu ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpSimplifiedSolution -SResourceName -Scope [-Parameter ] [-SolutionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzSelfHelpSimplifiedSolution -SResourceName -Scope -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpSimplifiedSolution -SResourceName -Scope -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaIdentityExpanded +``` +New-AzSelfHelpSimplifiedSolution -InputObject [-Parameter ] + [-SolutionId ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. In the absence of the 'Parameters' it is likely that some of the simplified Solutions might fail execution, and you might see an empty response. \
\
\Note:\ \
1. 'requiredInputs' from Discovery solutions response must be passed via 'parameters' in the request body of simplified Solutions API. @@ -83,6 +105,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -103,7 +170,7 @@ Client input parameters to run Simplified Solutions ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -118,7 +185,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -133,7 +200,7 @@ Solution Id to identify single Simplified Solution. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -148,7 +215,7 @@ Simplified Solutions Resource Name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: SimplifiedSolutionsResourceName Required: True @@ -194,9 +261,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSolution.md b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSolution.md index 01da1c33b01f..3d250187c37a 100644 --- a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSolution.md +++ b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpSolution.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzSelfHelpSolution ## SYNOPSIS -Creates a solution for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. \
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -22,14 +22,35 @@ In the absence of the 'requiredParameters' it is likely that some of the solutio ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpSolution -ResourceName -Scope [-Parameter ] [-TriggerCriterion ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzSelfHelpSolution -ResourceName -Scope -JsonString [-DefaultProfile ] + [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpSolution -ResourceName -Scope -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaIdentityExpanded +``` +New-AzSelfHelpSolution -InputObject [-Parameter ] + [-TriggerCriterion ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Creates a solution for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs 'solutionId and requiredInputs' from discovery solutions. \
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -98,6 +119,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NoWait Run the command asynchronously @@ -118,7 +184,7 @@ Client input parameters to run Solution ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -133,7 +199,7 @@ Solution resource Name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: SolutionResourceName Required: True @@ -148,7 +214,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -160,11 +226,10 @@ Accept wildcard characters: False ### -TriggerCriterion Solution request trigger criteria -To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -210,9 +275,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpTroubleshooter.md index 1b3fd62c70f6..f365c961ad64 100644 --- a/src/SelfHelp/SelfHelp/help/New-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp/help/New-AzSelfHelpTroubleshooter.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzSelfHelpTroubleshooter ## SYNOPSIS -Creates the specific troubleshooter action under a resource or subscription using the 'solutionId' and 'properties.parameters' as the trigger. +create the specific troubleshooter action under a resource or subscription using the 'solutionId' and 'properties.parameters' as the trigger. \
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -16,13 +16,32 @@ Troubleshooters terminate at a well curated solution based off of resource backe ## SYNTAX +### CreateExpanded (Default) ``` New-AzSelfHelpTroubleshooter -Name -Scope [-Parameter ] [-SolutionId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzSelfHelpTroubleshooter -Name -Scope -JsonString [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonFilePath +``` +New-AzSelfHelpTroubleshooter -Name -Scope -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaIdentityExpanded +``` +New-AzSelfHelpTroubleshooter -InputObject [-Parameter ] [-SolutionId ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Creates the specific troubleshooter action under a resource or subscription using the 'solutionId' and 'properties.parameters' as the trigger. +create the specific troubleshooter action under a resource or subscription using the 'solutionId' and 'properties.parameters' as the trigger. \
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -66,12 +85,57 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Troubleshooter resource Name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: TroubleshooterName Required: True @@ -86,7 +150,7 @@ Client input parameters to run Troubleshooter Resource ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -101,7 +165,7 @@ scope = resourceUri of affected resource.\
For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -116,7 +180,7 @@ Solution Id to identify single troubleshooter. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -162,9 +226,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Restart-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp/help/Restart-AzSelfHelpTroubleshooter.md index 21af2243a8bb..a942481634a6 100644 --- a/src/SelfHelp/SelfHelp/help/Restart-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp/help/Restart-AzSelfHelpTroubleshooter.md @@ -67,7 +67,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity @@ -151,7 +150,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse ## NOTES diff --git a/src/SelfHelp/SelfHelp/help/Stop-AzSelfHelpTroubleshooter.md b/src/SelfHelp/SelfHelp/help/Stop-AzSelfHelpTroubleshooter.md index ece3f0f05ce8..be1e2ee6509d 100644 --- a/src/SelfHelp/SelfHelp/help/Stop-AzSelfHelpTroubleshooter.md +++ b/src/SelfHelp/SelfHelp/help/Stop-AzSelfHelpTroubleshooter.md @@ -60,7 +60,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity diff --git a/src/SelfHelp/SelfHelp/help/Update-AzSelfHelpSolution.md b/src/SelfHelp/SelfHelp/help/Update-AzSelfHelpSolution.md index 4a2c7ac46a9d..30411a4defd4 100644 --- a/src/SelfHelp/SelfHelp/help/Update-AzSelfHelpSolution.md +++ b/src/SelfHelp/SelfHelp/help/Update-AzSelfHelpSolution.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzSelfHelpSolution ## SYNOPSIS -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution ## SYNTAX @@ -19,6 +19,20 @@ Update-AzSelfHelpSolution -ResourceName -Scope [-Parameter ] ``` +### UpdateViaJsonString +``` +Update-AzSelfHelpSolution -ResourceName -Scope -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzSelfHelpSolution -ResourceName -Scope -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzSelfHelpSolution -InputObject [-Parameter ] @@ -27,7 +41,7 @@ Update-AzSelfHelpSolution -InputObject [-Parameter For example: /subscriptions/0d0 ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -162,11 +205,10 @@ Accept wildcard characters: False ### -TriggerCriterion Solution request trigger criteria -To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -216,7 +258,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +### Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ## NOTES From 21715d79379460f5d3c1183a1d7022d637fcd8a3 Mon Sep 17 00:00:00 2001 From: "Mike F. Robbins" <6719572+mikefrobbins@users.noreply.github.com> Date: Mon, 26 May 2025 21:14:05 -0500 Subject: [PATCH 02/14] Corrected docs invalid related links (#27832) --- src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md | 6 +++--- src/DataFactory/DataFactory/help/Get-AzDataFactoryV2.md | 4 ++-- .../DataFactory/help/Get-AzDataFactoryV2ActivityRun.md | 4 ++-- .../DataFactory/help/Get-AzDataFactoryV2Dataset.md | 4 ++-- .../help/Get-AzDataFactoryV2IntegrationRuntime.md | 4 ++-- .../help/Get-AzDataFactoryV2IntegrationRuntimeKey.md | 2 +- .../help/Get-AzDataFactoryV2IntegrationRuntimeMetric.md | 2 +- .../help/Get-AzDataFactoryV2IntegrationRuntimeNode.md | 2 +- ...tegrationRuntimeOutboundNetworkDependenciesEndpoint.md | 2 +- .../DataFactory/help/Get-AzDataFactoryV2LinkedService.md | 4 ++-- .../DataFactory/help/Get-AzDataFactoryV2Pipeline.md | 6 +++--- .../DataFactory/help/Get-AzDataFactoryV2PipelineRun.md | 4 ++-- .../DataFactory/help/Get-AzDataFactoryV2Trigger.md | 8 ++++---- .../DataFactory/help/Get-AzDataFactoryV2TriggerRun.md | 4 ++-- .../Invoke-AzDataFactoryV2IntegrationRuntimeUpgrade.md | 4 ++-- .../DataFactory/help/Invoke-AzDataFactoryV2Pipeline.md | 4 ++-- .../help/New-AzDataFactoryV2IntegrationRuntimeKey.md | 2 +- .../DataFactory/help/Remove-AzDataFactoryV2.md | 4 ++-- .../DataFactory/help/Remove-AzDataFactoryV2Dataset.md | 4 ++-- .../help/Remove-AzDataFactoryV2IntegrationRuntime.md | 4 ++-- .../help/Remove-AzDataFactoryV2LinkedService.md | 4 ++-- .../DataFactory/help/Remove-AzDataFactoryV2Pipeline.md | 6 +++--- .../DataFactory/help/Remove-AzDataFactoryV2Trigger.md | 8 ++++---- src/DataFactory/DataFactory/help/Set-AzDataFactoryV2.md | 4 ++-- .../DataFactory/help/Set-AzDataFactoryV2Dataset.md | 4 ++-- .../help/Set-AzDataFactoryV2IntegrationRuntime.md | 2 +- .../DataFactory/help/Set-AzDataFactoryV2LinkedService.md | 4 ++-- .../DataFactory/help/Set-AzDataFactoryV2Pipeline.md | 6 +++--- .../DataFactory/help/Set-AzDataFactoryV2Trigger.md | 8 ++++---- .../help/Start-AzDataFactoryV2IntegrationRuntime.md | 2 +- .../DataFactory/help/Start-AzDataFactoryV2Trigger.md | 8 ++++---- .../help/Stop-AzDataFactoryV2IntegrationRuntime.md | 2 +- .../DataFactory/help/Stop-AzDataFactoryV2Trigger.md | 8 ++++---- .../help/Update-AzDataFactoryV2IntegrationRuntime.md | 4 ++-- .../help/Update-AzDataFactoryV2IntegrationRuntimeNode.md | 4 ++-- src/Network/Network/help/New-AzP2sVpnGateway.md | 2 +- src/Network/Network/help/New-AzVpnGateway.md | 6 +++--- .../help/Undo-AzRecoveryServicesBackupItemDeletion.md | 4 ++-- 38 files changed, 82 insertions(+), 82 deletions(-) diff --git a/src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md b/src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md index 8ffaaa601b0e..a3ecea09ea19 100644 --- a/src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md +++ b/src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md @@ -194,8 +194,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzBatchAccountKey]() +[Get-AzBatchAccountKey](Get-AzBatchAccountKey.md) -[Get-AzBatchJob]() +[Get-AzBatchJob](Get-AzBatchJob.md) -[Azure Batch Cmdlets]() +[Azure Batch Cmdlets](Az.Batch.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2.md index f92895cca868..be83f6edc33f 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2.md @@ -138,7 +138,7 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Set-AzDataFactoryV2]() +[Set-AzDataFactoryV2](Set-AzDataFactoryV2.md) -[Remove-AzDataFactoryV2]() +[Remove-AzDataFactoryV2](Remove-AzDataFactoryV2.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2ActivityRun.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2ActivityRun.md index bf750fd8e37a..5c37df53ffe6 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2ActivityRun.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2ActivityRun.md @@ -207,7 +207,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Invoke-AzDataFactoryV2Pipeline]() +[Invoke-AzDataFactoryV2Pipeline](Invoke-AzDataFactoryV2Pipeline.md) -[Get-AzDataFactoryV2PipelineRun]() +[Get-AzDataFactoryV2PipelineRun](Get-AzDataFactoryV2PipelineRun.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Dataset.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Dataset.md index bcb5ffa32460..67b03c9b78ca 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Dataset.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Dataset.md @@ -192,6 +192,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Set-AzDataFactoryV2Dataset]() +[Set-AzDataFactoryV2Dataset](Set-AzDataFactoryV2Dataset.md) -[Remove-AzDataFactoryV2Dataset]() +[Remove-AzDataFactoryV2Dataset](Remove-AzDataFactoryV2Dataset.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntime.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntime.md index 3f51e324b1f0..3aa696005149 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntime.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntime.md @@ -287,6 +287,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Set-AzDataFactoryV2IntegrationRuntime]() +[Set-AzDataFactoryV2IntegrationRuntime](Set-AzDataFactoryV2IntegrationRuntime.md) -[Remove-AzDataFactoryV2IntegrationRuntime]() +[Remove-AzDataFactoryV2IntegrationRuntime](Remove-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeKey.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeKey.md index 31f2b8adb16d..432be8e9a816 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeKey.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeKey.md @@ -157,4 +157,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-AzDataFactoryV2IntegrationRuntimeKey]() +[New-AzDataFactoryV2IntegrationRuntimeKey](New-AzDataFactoryV2IntegrationRuntimeKey.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeMetric.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeMetric.md index 8b4bc8f7533e..a88be594b59b 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeMetric.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeMetric.md @@ -157,5 +157,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2IntegrationRuntime]() +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeNode.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeNode.md index ecd61d92c29a..895cf3350f62 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeNode.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeNode.md @@ -242,4 +242,4 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Get-AzDataFactoryV2IntegrationRuntime]() +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeOutboundNetworkDependenciesEndpoint.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeOutboundNetworkDependenciesEndpoint.md index d3a9a91873a8..965109f94a03 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeOutboundNetworkDependenciesEndpoint.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2IntegrationRuntimeOutboundNetworkDependenciesEndpoint.md @@ -159,4 +159,4 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Get-AzDataFactoryV2IntegrationRuntime]() +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2LinkedService.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2LinkedService.md index 275d87c3ca7a..a37de9fe9beb 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2LinkedService.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2LinkedService.md @@ -207,6 +207,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Set-AzDataFactoryV2LinkedService]() +[Set-AzDataFactoryV2LinkedService](Set-AzDataFactoryV2LinkedService.md) -[Remove-AzDataFactoryV2LinkedService]() +[Remove-AzDataFactoryV2LinkedService](Remove-AzDataFactoryV2LinkedService.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Pipeline.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Pipeline.md index b267b7e0608d..106c67147bd8 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Pipeline.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Pipeline.md @@ -247,8 +247,8 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Set-AzDataFactoryV2Pipeline]() +[Set-AzDataFactoryV2Pipeline](Set-AzDataFactoryV2Pipeline.md) -[Remove-AzDataFactoryV2Pipeline]() +[Remove-AzDataFactoryV2Pipeline](Remove-AzDataFactoryV2Pipeline.md) -[Invoke-AzDataFactoryV2Pipeline]() +[Invoke-AzDataFactoryV2Pipeline](Invoke-AzDataFactoryV2Pipeline.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2PipelineRun.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2PipelineRun.md index 85dba5f9b8c4..a85153ef26bc 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2PipelineRun.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2PipelineRun.md @@ -203,7 +203,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Invoke-AzDataFactoryV2Pipeline]() +[Invoke-AzDataFactoryV2Pipeline](Invoke-AzDataFactoryV2Pipeline.md) -[Get-AzDataFactoryV2ActivityRun]() +[Get-AzDataFactoryV2ActivityRun](Get-AzDataFactoryV2ActivityRun.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Trigger.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Trigger.md index a0ac19621e71..a3b4eeb769cb 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Trigger.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2Trigger.md @@ -180,10 +180,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Set-AzDataFactoryV2Trigger]() +[Set-AzDataFactoryV2Trigger](Set-AzDataFactoryV2Trigger.md) -[Start-AzDataFactoryV2Trigger]() +[Start-AzDataFactoryV2Trigger](Start-AzDataFactoryV2Trigger.md) -[Stop-AzDataFactoryV2Trigger]() +[Stop-AzDataFactoryV2Trigger](Stop-AzDataFactoryV2Trigger.md) -[Remove-AzDataFactoryV2Trigger]() +[Remove-AzDataFactoryV2Trigger](Remove-AzDataFactoryV2Trigger.md) diff --git a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2TriggerRun.md b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2TriggerRun.md index c81a1c2608b7..c7a321760728 100644 --- a/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2TriggerRun.md +++ b/src/DataFactory/DataFactory/help/Get-AzDataFactoryV2TriggerRun.md @@ -172,7 +172,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Start-AzDataFactoryV2Trigger]() +[Start-AzDataFactoryV2Trigger](Start-AzDataFactoryV2Trigger.md) -[Stop-AzDataFactoryV2Trigger]() +[Stop-AzDataFactoryV2Trigger](Stop-AzDataFactoryV2Trigger.md) diff --git a/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2IntegrationRuntimeUpgrade.md b/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2IntegrationRuntimeUpgrade.md index 4b3290ec4bc3..7b0cedc37510 100644 --- a/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2IntegrationRuntimeUpgrade.md +++ b/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2IntegrationRuntimeUpgrade.md @@ -184,6 +184,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Set-AzDataFactoryV2IntegrationRuntime]() -[Get-AzDataFactoryV2IntegrationRuntime]() +[Set-AzDataFactoryV2IntegrationRuntime](Set-AzDataFactoryV2IntegrationRuntime.md) +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2Pipeline.md b/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2Pipeline.md index c7db69ced6f2..2c8116b6c1a1 100644 --- a/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2Pipeline.md +++ b/src/DataFactory/DataFactory/help/Invoke-AzDataFactoryV2Pipeline.md @@ -285,7 +285,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2PipelineRun]() +[Get-AzDataFactoryV2PipelineRun](Get-AzDataFactoryV2PipelineRun.md) -[Get-AzDataFactoryV2ActivityRun]() +[Get-AzDataFactoryV2ActivityRun](Get-AzDataFactoryV2ActivityRun.md) diff --git a/src/DataFactory/DataFactory/help/New-AzDataFactoryV2IntegrationRuntimeKey.md b/src/DataFactory/DataFactory/help/New-AzDataFactoryV2IntegrationRuntimeKey.md index cfe3fcda2eba..31dacfc82936 100644 --- a/src/DataFactory/DataFactory/help/New-AzDataFactoryV2IntegrationRuntimeKey.md +++ b/src/DataFactory/DataFactory/help/New-AzDataFactoryV2IntegrationRuntimeKey.md @@ -219,4 +219,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2IntegrationRuntimeKey]() +[Get-AzDataFactoryV2IntegrationRuntimeKey](Get-AzDataFactoryV2IntegrationRuntimeKey.md) diff --git a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2.md b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2.md index f4e0035ec69e..38d47066daa3 100644 --- a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2.md +++ b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2.md @@ -191,6 +191,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2]() +[Get-AzDataFactoryV2](Get-AzDataFactoryV2.md) -[Set-AzDataFactoryV2]() +[Set-AzDataFactoryV2](Set-AzDataFactoryV2.md) diff --git a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Dataset.md b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Dataset.md index 775f9be75cc9..07124cab3870 100644 --- a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Dataset.md +++ b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Dataset.md @@ -208,6 +208,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2Dataset]() +[Get-AzDataFactoryV2Dataset](Get-AzDataFactoryV2Dataset.md) -[Set-AzDataFactoryV2Dataset]() +[Set-AzDataFactoryV2Dataset](Set-AzDataFactoryV2Dataset.md) diff --git a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2IntegrationRuntime.md b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2IntegrationRuntime.md index 0107bfec064e..f609c5ce183d 100644 --- a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2IntegrationRuntime.md +++ b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2IntegrationRuntime.md @@ -215,7 +215,7 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Set-AzDataFactoryV2IntegrationRuntime]() +[Set-AzDataFactoryV2IntegrationRuntime](Set-AzDataFactoryV2IntegrationRuntime.md) -[Get-AzDataFactoryV2IntegrationRuntime]() +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2LinkedService.md b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2LinkedService.md index ea5497aa2fe7..ba1970a15736 100644 --- a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2LinkedService.md +++ b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2LinkedService.md @@ -209,7 +209,7 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2LinkedService]() +[Get-AzDataFactoryV2LinkedService](Get-AzDataFactoryV2LinkedService.md) -[Set-AzDataFactoryV2LinkedService]() +[Set-AzDataFactoryV2LinkedService](Set-AzDataFactoryV2LinkedService.md) diff --git a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Pipeline.md b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Pipeline.md index d1b03d99303c..133c0c71bdb0 100644 --- a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Pipeline.md +++ b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Pipeline.md @@ -209,9 +209,9 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2Pipeline]() +[Get-AzDataFactoryV2Pipeline](Get-AzDataFactoryV2Pipeline.md) -[Set-AzDataFactoryV2Pipeline]() +[Set-AzDataFactoryV2Pipeline](Set-AzDataFactoryV2Pipeline.md) -[Invoke-AzDataFactoryV2Pipeline]() +[Invoke-AzDataFactoryV2Pipeline](Invoke-AzDataFactoryV2Pipeline.md) diff --git a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Trigger.md b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Trigger.md index 4c5591e2fd0c..25d3c68cb42c 100644 --- a/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Trigger.md +++ b/src/DataFactory/DataFactory/help/Remove-AzDataFactoryV2Trigger.md @@ -204,11 +204,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2Trigger]() +[Get-AzDataFactoryV2Trigger](Get-AzDataFactoryV2Trigger.md) -[Set-AzDataFactoryV2Trigger]() +[Set-AzDataFactoryV2Trigger](Set-AzDataFactoryV2Trigger.md) -[Start-AzDataFactoryV2Trigger]() +[Start-AzDataFactoryV2Trigger](Start-AzDataFactoryV2Trigger.md) -[Stop-AzDataFactoryV2Trigger]() +[Stop-AzDataFactoryV2Trigger](Stop-AzDataFactoryV2Trigger.md) diff --git a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2.md b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2.md index fd5cefc9c06e..87f1092e6a15 100644 --- a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2.md +++ b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2.md @@ -681,6 +681,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2]() +[Get-AzDataFactoryV2](Get-AzDataFactoryV2.md) -[Remove-AzDataFactoryV2]() +[Remove-AzDataFactoryV2](Remove-AzDataFactoryV2.md) diff --git a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Dataset.md b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Dataset.md index 9c791e40c81d..0d1e0d1eea2b 100644 --- a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Dataset.md +++ b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Dataset.md @@ -210,6 +210,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2Dataset]() +[Get-AzDataFactoryV2Dataset](Get-AzDataFactoryV2Dataset.md) -[Remove-AzDataFactoryV2Dataset]() +[Remove-AzDataFactoryV2Dataset](Remove-AzDataFactoryV2Dataset.md) diff --git a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2IntegrationRuntime.md b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2IntegrationRuntime.md index 93adc21de214..0a0e7b096882 100644 --- a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2IntegrationRuntime.md +++ b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2IntegrationRuntime.md @@ -816,4 +816,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Set-AzDataFactoryV2IntegrationRuntime]() +[Set-AzDataFactoryV2IntegrationRuntime](Set-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2LinkedService.md b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2LinkedService.md index b944433fdd0e..0bc28a9d1d89 100644 --- a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2LinkedService.md +++ b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2LinkedService.md @@ -210,6 +210,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2LinkedService]() +[Get-AzDataFactoryV2LinkedService](Get-AzDataFactoryV2LinkedService.md) -[Remove-AzDataFactoryV2LinkedService]() +[Remove-AzDataFactoryV2LinkedService](Remove-AzDataFactoryV2LinkedService.md) diff --git a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Pipeline.md b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Pipeline.md index 56bdb8dbb16f..a0f69ae6c58a 100644 --- a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Pipeline.md +++ b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Pipeline.md @@ -211,8 +211,8 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories ## RELATED LINKS -[Get-AzDataFactoryV2Pipeline]() +[Get-AzDataFactoryV2Pipeline](Get-AzDataFactoryV2Pipeline.md) -[Remove-AzDataFactoryV2Pipeline]() +[Remove-AzDataFactoryV2Pipeline](Remove-AzDataFactoryV2Pipeline.md) -[Invoke-AzDataFactoryV2Pipeline]() +[Invoke-AzDataFactoryV2Pipeline](Invoke-AzDataFactoryV2Pipeline.md) diff --git a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Trigger.md b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Trigger.md index 3caffdf7ddd1..edc9a519f5fb 100644 --- a/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Trigger.md +++ b/src/DataFactory/DataFactory/help/Set-AzDataFactoryV2Trigger.md @@ -197,10 +197,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2Trigger]() +[Get-AzDataFactoryV2Trigger](Get-AzDataFactoryV2Trigger.md) -[Start-AzDataFactoryV2Trigger]() +[Start-AzDataFactoryV2Trigger](Start-AzDataFactoryV2Trigger.md) -[Stop-AzDataFactoryV2Trigger]() +[Stop-AzDataFactoryV2Trigger](Stop-AzDataFactoryV2Trigger.md) -[Remove-AzDataFactoryV2Trigger]() +[Remove-AzDataFactoryV2Trigger](Remove-AzDataFactoryV2Trigger.md) diff --git a/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2IntegrationRuntime.md b/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2IntegrationRuntime.md index 7480dcfa7e85..07c8a248bd7b 100644 --- a/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2IntegrationRuntime.md +++ b/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2IntegrationRuntime.md @@ -222,4 +222,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Stop-AzDataFactoryV2IntegrationRuntime]() +[Stop-AzDataFactoryV2IntegrationRuntime](Stop-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2Trigger.md b/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2Trigger.md index 94e462ee62eb..f64237fa102b 100644 --- a/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2Trigger.md +++ b/src/DataFactory/DataFactory/help/Start-AzDataFactoryV2Trigger.md @@ -204,10 +204,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2Trigger]() +[Get-AzDataFactoryV2Trigger](Get-AzDataFactoryV2Trigger.md) -[Set-AzDataFactoryV2Trigger]() +[Set-AzDataFactoryV2Trigger](Set-AzDataFactoryV2Trigger.md) -[Stop-AzDataFactoryV2Trigger]() +[Stop-AzDataFactoryV2Trigger](Stop-AzDataFactoryV2Trigger.md) -[Remove-AzDataFactoryV2Trigger]() +[Remove-AzDataFactoryV2Trigger](Remove-AzDataFactoryV2Trigger.md) diff --git a/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2IntegrationRuntime.md b/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2IntegrationRuntime.md index dbac63fd1405..2f5a50ea11f0 100644 --- a/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2IntegrationRuntime.md +++ b/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2IntegrationRuntime.md @@ -198,4 +198,4 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Start-AzDataFactoryV2IntegrationRuntime]() +[Start-AzDataFactoryV2IntegrationRuntime](Start-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2Trigger.md b/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2Trigger.md index b6d9aedb5d45..dc13a87aa0bd 100644 --- a/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2Trigger.md +++ b/src/DataFactory/DataFactory/help/Stop-AzDataFactoryV2Trigger.md @@ -203,10 +203,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzDataFactoryV2Trigger]() +[Get-AzDataFactoryV2Trigger](Get-AzDataFactoryV2Trigger.md) -[Set-AzDataFactoryV2Trigger]() +[Set-AzDataFactoryV2Trigger](Set-AzDataFactoryV2Trigger.md) -[Start-AzDataFactoryV2Trigger]() +[Start-AzDataFactoryV2Trigger](Start-AzDataFactoryV2Trigger.md) -[Remove-AzDataFactoryV2Trigger]() +[Remove-AzDataFactoryV2Trigger](Remove-AzDataFactoryV2Trigger.md) diff --git a/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntime.md b/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntime.md index 81de8e0593c7..f3568b4ecdbd 100644 --- a/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntime.md +++ b/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntime.md @@ -242,6 +242,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Set-AzDataFactoryV2IntegrationRuntime]() -[Get-AzDataFactoryV2IntegrationRuntime]() +[Set-AzDataFactoryV2IntegrationRuntime](Set-AzDataFactoryV2IntegrationRuntime.md) +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntimeNode.md b/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntimeNode.md index 2ab5dd4227eb..2ebaef934d43 100644 --- a/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntimeNode.md +++ b/src/DataFactory/DataFactory/help/Update-AzDataFactoryV2IntegrationRuntimeNode.md @@ -221,6 +221,6 @@ Keywords: azure, azurerm, arm, resource, management, manager, data, factories, c ## RELATED LINKS -[Set-AzDataFactoryV2IntegrationRuntime]() -[Get-AzDataFactoryV2IntegrationRuntime]() +[Set-AzDataFactoryV2IntegrationRuntime](Set-AzDataFactoryV2IntegrationRuntime.md) +[Get-AzDataFactoryV2IntegrationRuntime](Get-AzDataFactoryV2IntegrationRuntime.md) diff --git a/src/Network/Network/help/New-AzP2sVpnGateway.md b/src/Network/Network/help/New-AzP2sVpnGateway.md index fa7912d11da9..0bec260c9d94 100644 --- a/src/Network/Network/help/New-AzP2sVpnGateway.md +++ b/src/Network/Network/help/New-AzP2sVpnGateway.md @@ -458,4 +458,4 @@ System.String Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration ## RELATED LINKS -[New-AzRoutingConfiguration]() +[New-AzRoutingConfiguration](New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/New-AzVpnGateway.md b/src/Network/Network/help/New-AzVpnGateway.md index 5add3748d9ad..e8523094e51f 100644 --- a/src/Network/Network/help/New-AzVpnGateway.md +++ b/src/Network/Network/help/New-AzVpnGateway.md @@ -332,8 +332,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzVpnGateway]() +[Get-AzVpnGateway](Get-AzVpnGateway.md) -[Remove-AzVpnGateway]() +[Remove-AzVpnGateway](Remove-AzVpnGateway.md) -[Update-AzVpnGateway]() +[Update-AzVpnGateway](Update-AzVpnGateway.md) diff --git a/src/RecoveryServices/RecoveryServices/help/Undo-AzRecoveryServicesBackupItemDeletion.md b/src/RecoveryServices/RecoveryServices/help/Undo-AzRecoveryServicesBackupItemDeletion.md index cf111f9c45a5..435579acd2e5 100644 --- a/src/RecoveryServices/RecoveryServices/help/Undo-AzRecoveryServicesBackupItemDeletion.md +++ b/src/RecoveryServices/RecoveryServices/help/Undo-AzRecoveryServicesBackupItemDeletion.md @@ -158,7 +158,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzRecoveryServicesBackupContainer]() +[Get-AzRecoveryServicesBackupContainer](Get-AzRecoveryServicesBackupContainer.md) -[Get-AzRecoveryServicesBackupItem]() +[Get-AzRecoveryServicesBackupItem](Get-AzRecoveryServicesBackupItem.md) From 18f18f8264cc6d476367f9b57148461edd1bf683 Mon Sep 17 00:00:00 2001 From: "Mike F. Robbins" <6719572+mikefrobbins@users.noreply.github.com> Date: Mon, 26 May 2025 21:14:29 -0500 Subject: [PATCH 03/14] Corrected docs other-site-link-broken build warnings (#27810) --- src/Compute/Compute/help/Add-AzVMSecret.md | 2 +- ...-AzConnectedNetworkFunctionRoleConfigurationObject.md | 9 ++------- ...zConnectedNetworkFunctionVendorConfigurationObject.md | 9 ++------- src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md | 4 ++-- src/Monitor/Monitor/help/Get-AzMetricsBatch.md | 8 ++++---- .../Network/help/Add-AzApplicationGatewayProbeConfig.md | 2 +- .../Network/help/Get-AzApplicationGatewayProbeConfig.md | 2 +- .../Network/help/New-AzApplicationGatewayProbeConfig.md | 2 +- .../help/Remove-AzApplicationGatewayProbeConfig.md | 2 +- src/RedisCache/RedisCache/help/Set-AzRedisCache.md | 2 +- src/Sql/Sql/help/Restore-AzSqlDatabase.md | 2 -- .../Storage.Management/help/Set-AzStorageAccount.md | 2 +- 12 files changed, 17 insertions(+), 29 deletions(-) diff --git a/src/Compute/Compute/help/Add-AzVMSecret.md b/src/Compute/Compute/help/Add-AzVMSecret.md index 42fd946d4971..44d166a91b08 100644 --- a/src/Compute/Compute/help/Add-AzVMSecret.md +++ b/src/Compute/Compute/help/Add-AzVMSecret.md @@ -24,7 +24,7 @@ Add-AzVMSecret [-VM] [[-SourceVaultId] ] [[-Certifica The **Add-AzVMSecret** cmdlet adds a secret to a virtual machine. This value lets you add a certificate to the virtual machine. The secret must be stored in a Key Vault. -For more information about Key Vault, see [What is Azure Key Vault?](https://azure.microsoft.com/documentation/articles/key-vault-whatis/). +For more information about Key Vault, see [What is Azure Key Vault?](/azure/key-vault/general/overview). For more information about the cmdlets, see [Azure Key Vault Cmdlets](/powershell/module/az.keyvault) or the [Set-AzKeyVaultSecret](/powershell/module/az.keyvault/set-azkeyvaultsecret) cmdlet. > [!NOTE] diff --git a/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionRoleConfigurationObject.md b/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionRoleConfigurationObject.md index 096b6d9aa78d..8b316955f73d 100644 --- a/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionRoleConfigurationObject.md +++ b/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionRoleConfigurationObject.md @@ -221,10 +221,7 @@ Specifies the name of the administrator account. **Max-length (Linux):** 64 characters - **Max-length (Windows):** 20 characters - -\ For root access to the Linux VM, see [Using root privileges on Linux virtual machines in Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-use-root-privileges?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json) -\ For a list of built-in system users on Linux that should not be used in this field, see [Selecting User Names for Linux on Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-usernames?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). + **Max-length (Windows):** 20 characters ```yaml Type: System.String @@ -250,9 +247,7 @@ The maximum length of the binary array is 65535 bytes. customData is passed to the VM to be saved as a file. -For more information see [Custom Data on Azure VMs](https://azure.microsoft.com/en-us/blog/custom-data-and-cloud-init-on-windows-azure/) - - For using cloud-init for your Linux VM, see [Using cloud-init to customize a Linux VM during creation](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-using-cloud-init?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). +For more information see [Custom Data on Azure VMs](https://azure.microsoft.com/en-us/blog/custom-data-and-cloud-init-on-windows-azure/) ```yaml Type: System.String diff --git a/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionVendorConfigurationObject.md b/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionVendorConfigurationObject.md index fad6c99d6980..d781be72466d 100644 --- a/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionVendorConfigurationObject.md +++ b/src/ConnectedNetwork/ConnectedNetwork/help/New-AzConnectedNetworkFunctionVendorConfigurationObject.md @@ -70,10 +70,7 @@ Specifies the name of the administrator account. **Max-length (Linux):** 64 characters - **Max-length (Windows):** 20 characters - -\ For root access to the Linux VM, see [Using root privileges on Linux virtual machines in Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-use-root-privileges?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json) -\ For a list of built-in system users on Linux that should not be used in this field, see [Selecting User Names for Linux on Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-usernames?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). + **Max-length (Windows):** 20 characters ```yaml Type: System.String @@ -99,9 +96,7 @@ The maximum length of the binary array is 65535 bytes. customData is passed to the VM to be saved as a file. -For more information see [Custom Data on Azure VMs](https://azure.microsoft.com/en-us/blog/custom-data-and-cloud-init-on-windows-azure/) - - For using cloud-init for your Linux VM, see [Using cloud-init to customize a Linux VM during creation](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-using-cloud-init?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). +For more information see [Custom Data on Azure VMs](https://azure.microsoft.com/en-us/blog/custom-data-and-cloud-init-on-windows-azure/) ```yaml Type: System.String diff --git a/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md b/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md index 7b2eadda76c3..2d1bd67aa3c0 100644 --- a/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md +++ b/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md @@ -135,7 +135,7 @@ in the Key Vault REST API documentation. Note: To import a key from your own hardware security module, you must first generate a BYOK package (a file with a .byok file name extension) by using the Azure Key Vault BYOK toolset. For more information, see -[How to Generate and Transfer HSM-Protected Keys for Azure Key Vault](http://go.microsoft.com/fwlink/?LinkId=522252). +[How to Generate and Transfer HSM-Protected Keys for Azure Key Vault](/azure/key-vault/keys/hsm-protected-keys). As a best practice, back up your key after it is created or updated, by using the Backup-AzKeyVaultKey cmdlet. There is no undelete functionality, so if you accidentally delete your key or delete it and then change your mind, the key is not recoverable unless you have a @@ -274,7 +274,7 @@ This command imports the key named ITByok from the location that the *KeyFilePat specifies. The imported key is an HSM-protected key. To import a key from your own hardware security module, you must first generate a BYOK package (a file with a .byok file name extension) by using the Azure Key Vault BYOK toolset. For more information, see -[How to Generate and Transfer HSM-Protected Keys for Azure Key Vault](http://go.microsoft.com/fwlink/?LinkId=522252). +[How to Generate and Transfer HSM-Protected Keys for Azure Key Vault](/azure/key-vault/keys/hsm-protected-keys). ### Example 6: Import a software-protected key ```powershell diff --git a/src/Monitor/Monitor/help/Get-AzMetricsBatch.md b/src/Monitor/Monitor/help/Get-AzMetricsBatch.md index f167cd28b10f..480d4c043720 100644 --- a/src/Monitor/Monitor/help/Get-AzMetricsBatch.md +++ b/src/Monitor/Monitor/help/Get-AzMetricsBatch.md @@ -910,7 +910,7 @@ Accept wildcard characters: False ``` ### -Endpoint -The regional endpoint to use, for example https://eastus.metrics.monitor.azure.com. +The regional endpoint to use, for example `https://eastus.metrics.monitor.azure.com`. The region should match the region of the requested resources. For global resources, the region should be 'global'. @@ -1208,7 +1208,7 @@ Accept wildcard characters: False ``` ### -Endpoint -The regional endpoint to use, for example https://eastus.metrics.monitor.azure.com. +The regional endpoint to use, for example `https://eastus.metrics.monitor.azure.com`. The region should match the region of the requested resources. For global resources, the region should be 'global'. @@ -1506,7 +1506,7 @@ Accept wildcard characters: False ``` ### -Endpoint -The regional endpoint to use, for example https://eastus.metrics.monitor.azure.com. +The regional endpoint to use, for example `https://eastus.metrics.monitor.azure.com`. The region should match the region of the requested resources. For global resources, the region should be 'global'. @@ -1804,7 +1804,7 @@ Accept wildcard characters: False ``` ### -Endpoint -The regional endpoint to use, for example https://eastus.metrics.monitor.azure.com. +The regional endpoint to use, for example `https://eastus.metrics.monitor.azure.com`. The region should match the region of the requested resources. For global resources, the region should be 'global'. diff --git a/src/Network/Network/help/Add-AzApplicationGatewayProbeConfig.md b/src/Network/Network/help/Add-AzApplicationGatewayProbeConfig.md index e11710517a03..fb0fe8960e9e 100644 --- a/src/Network/Network/help/Add-AzApplicationGatewayProbeConfig.md +++ b/src/Network/Network/help/Add-AzApplicationGatewayProbeConfig.md @@ -258,7 +258,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add a probe to an existing application gateway](https://azure.microsoft.com/en-us/documentation/articles/application-gateway-create-probe-ps/#add-a-probe-to-an-existing-application-gateway) +[Add a probe to an existing application gateway](/azure/application-gateway/application-gateway-create-probe-ps#add-a-probe-to-an-existing-application-gateway) [Get-AzApplicationGatewayProbeConfig](./Get-AzApplicationGatewayProbeConfig.md) diff --git a/src/Network/Network/help/Get-AzApplicationGatewayProbeConfig.md b/src/Network/Network/help/Get-AzApplicationGatewayProbeConfig.md index b3560308bc21..3c86437a5dec 100644 --- a/src/Network/Network/help/Get-AzApplicationGatewayProbeConfig.md +++ b/src/Network/Network/help/Get-AzApplicationGatewayProbeConfig.md @@ -91,7 +91,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add a probe to an existing application gateway](https://azure.microsoft.com/en-us/documentation/articles/application-gateway-create-probe-ps/#add-a-probe-to-an-existing-application-gateway) +[Add a probe to an existing application gateway](/azure/application-gateway/application-gateway-create-probe-ps#add-a-probe-to-an-existing-application-gateway) [Add-AzApplicationGatewayProbeConfig](./Add-AzApplicationGatewayProbeConfig.md) diff --git a/src/Network/Network/help/New-AzApplicationGatewayProbeConfig.md b/src/Network/Network/help/New-AzApplicationGatewayProbeConfig.md index b45dd38d3e97..4bf7cda5b6d1 100644 --- a/src/Network/Network/help/New-AzApplicationGatewayProbeConfig.md +++ b/src/Network/Network/help/New-AzApplicationGatewayProbeConfig.md @@ -251,7 +251,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Create custom probe for Application Gateway using PowerShell for Azure Resource Manager](https://azure.microsoft.com/en-us/documentation/articles/application-gateway-create-probe-ps/#) +[Create custom probe for Application Gateway using PowerShell for Azure Resource Manager](/azure/application-gateway/application-gateway-create-probe-ps) [Add-AzApplicationGatewayProbeConfig](./Add-AzApplicationGatewayProbeConfig.md) diff --git a/src/Network/Network/help/Remove-AzApplicationGatewayProbeConfig.md b/src/Network/Network/help/Remove-AzApplicationGatewayProbeConfig.md index d03c51a819ff..7a6258df84a6 100644 --- a/src/Network/Network/help/Remove-AzApplicationGatewayProbeConfig.md +++ b/src/Network/Network/help/Remove-AzApplicationGatewayProbeConfig.md @@ -91,7 +91,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Remove a probe from an existing application gateway](https://azure.microsoft.com/en-us/documentation/articles/application-gateway-create-probe-ps/#remove-a-probe-from-an-existing-application-gateway) +[Remove a probe from an existing application gateway](/azure/application-gateway/application-gateway-create-probe-ps#remove-a-probe-from-an-existing-application-gateway) [Add-AzApplicationGatewayProbeConfig](./Add-AzApplicationGatewayProbeConfig.md) diff --git a/src/RedisCache/RedisCache/help/Set-AzRedisCache.md b/src/RedisCache/RedisCache/help/Set-AzRedisCache.md index 643149241b37..edce01caa447 100644 --- a/src/RedisCache/RedisCache/help/Set-AzRedisCache.md +++ b/src/RedisCache/RedisCache/help/Set-AzRedisCache.md @@ -415,7 +415,7 @@ Standard and Premium tiers. Configures the number of databases. This property can be configured only at cache creation. Standard and Premium tiers. -For more information, see Manage Azure Redis Cache with Azure PowerShellhttp://go.microsoft.com/fwlink/?LinkId=800051 (http://go.microsoft.com/fwlink/?LinkId=800051). +For more information, see [Manage Azure Redis Cache with Azure PowerShell](/azure/redis/how-to-manage-redis-cache-powershell). - preferred-data-archive-auth-method Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS - preferred-data-persistence-auth-method diff --git a/src/Sql/Sql/help/Restore-AzSqlDatabase.md b/src/Sql/Sql/help/Restore-AzSqlDatabase.md index bd0b8795a907..2e890913623c 100644 --- a/src/Sql/Sql/help/Restore-AzSqlDatabase.md +++ b/src/Sql/Sql/help/Restore-AzSqlDatabase.md @@ -664,8 +664,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Recover an Azure SQL Database from an outage](http://go.microsoft.com/fwlink/?LinkId=746882) -[Recover an Azure SQL Database from a user error](http://go.microsoft.com/fwlink/?LinkId=746944) - [Get-AzSqlDatabase](./Get-AzSqlDatabase.md) [Get-AzSqlDatabaseGeoBackup](./Get-AzSqlDatabaseGeoBackup.md) diff --git a/src/Storage/Storage.Management/help/Set-AzStorageAccount.md b/src/Storage/Storage.Management/help/Set-AzStorageAccount.md index 5258b60d1da5..21e18083460d 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageAccount.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageAccount.md @@ -452,7 +452,7 @@ This command updates a storage account with Keyvault from another tenant (access Specifies the access tier of the Storage account that this cmdlet modifies. The acceptable values for this parameter are: Hot and Cool. If you change the access tier, it may result in additional charges. For more information, see -[Azure Blob Storage: Hot and cool storage tiers](http://go.microsoft.com/fwlink/?LinkId=786482). +[Azure Blob Storage: Hot and cool storage tiers](https://azure.microsoft.com/pricing/details/storage/blobs/). If the Storage account has Kind as StorageV2 or BlobStorage, you can specify the *AccessTier* parameter. If the Storage account has Kind as Storage, do not specify the *AccessTier* parameter. From 9cabf6d0209da3d47ee1742439d3009d29a03658 Mon Sep 17 00:00:00 2001 From: Azure PowerShell <65331932+azure-powershell-bot@users.noreply.github.com> Date: Tue, 27 May 2025 12:16:19 +1000 Subject: [PATCH 04/14] [skip ci] Archive 887ebd06968ffd83181d4f1d76e95add6b72f4ed (#27845) --- .../MobileNetwork.Autorest/Properties/AssemblyInfo.cs | 1 - .../MobileNetwork/MobileNetwork.Autorest/generate-info.json | 2 +- ...yAzMobileNetworkReinstallPacketCoreControlPlane_Reinstall.cs | 1 + ...tworkReinstallPacketCoreControlPlane_ReinstallViaIdentity.cs | 1 + ...loyAzMobileNetworkRollbackPacketCoreControlPlane_Rollback.cs | 1 + ...NetworkRollbackPacketCoreControlPlane_RollbackViaIdentity.cs | 1 + .../cmdlets/GetAzMobileNetworkAttachedDataNetwork_Get.cs | 1 + .../GetAzMobileNetworkAttachedDataNetwork_GetViaIdentity.cs | 1 + ...kAttachedDataNetwork_GetViaIdentityPacketCoreControlPlane.cs | 1 + ...workAttachedDataNetwork_GetViaIdentityPacketCoreDataPlane.cs | 1 + .../cmdlets/GetAzMobileNetworkAttachedDataNetwork_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkDataNetwork_Get.cs | 1 + .../cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentity.cs | 1 + ...GetAzMobileNetworkDataNetwork_GetViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkDataNetwork_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkOperation_List.cs | 1 + .../GetAzMobileNetworkPacketCoreControlPlaneVersion_Get.cs | 1 + ...MobileNetworkPacketCoreControlPlaneVersion_GetViaIdentity.cs | 1 + .../GetAzMobileNetworkPacketCoreControlPlaneVersion_List.cs | 1 + .../cmdlets/GetAzMobileNetworkPacketCoreControlPlane_Get.cs | 1 + .../GetAzMobileNetworkPacketCoreControlPlane_GetViaIdentity.cs | 1 + .../cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List.cs | 1 + .../cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List1.cs | 1 + .../cmdlets/GetAzMobileNetworkPacketCoreDataPlane_Get.cs | 1 + .../GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentity.cs | 1 + ...kPacketCoreDataPlane_GetViaIdentityPacketCoreControlPlane.cs | 1 + .../cmdlets/GetAzMobileNetworkPacketCoreDataPlane_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkService_Get.cs | 1 + .../cmdlets/GetAzMobileNetworkService_GetViaIdentity.cs | 1 + .../GetAzMobileNetworkService_GetViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkService_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSimGroup_Get.cs | 1 + .../cmdlets/GetAzMobileNetworkSimGroup_GetViaIdentity.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSimGroup_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSimGroup_List1.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSimPolicy_Get.cs | 1 + .../cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentity.cs | 1 + .../GetAzMobileNetworkSimPolicy_GetViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSimPolicy_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSim_Get.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentity.cs | 1 + .../cmdlets/GetAzMobileNetworkSim_GetViaIdentitySimGroup.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSim_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSite_Get.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentity.cs | 1 + .../GetAzMobileNetworkSite_GetViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSite_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSlice_Get.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentity.cs | 1 + .../GetAzMobileNetworkSlice_GetViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/GetAzMobileNetworkSlice_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetwork_Get.cs | 1 + .../generated/cmdlets/GetAzMobileNetwork_GetViaIdentity.cs | 1 + .../generated/cmdlets/GetAzMobileNetwork_List.cs | 1 + .../generated/cmdlets/GetAzMobileNetwork_List1.cs | 1 + .../NewAzMobileNetworkAttachedDataNetwork_CreateExpanded.cs | 1 + ...obileNetworkAttachedDataNetwork_CreateViaIdentityExpanded.cs | 1 + ...taNetwork_CreateViaIdentityPacketCoreControlPlaneExpanded.cs | 1 + ...dDataNetwork_CreateViaIdentityPacketCoreDataPlaneExpanded.cs | 1 + ...wAzMobileNetworkAttachedDataNetwork_CreateViaJsonFilePath.cs | 1 + ...NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonString.cs | 1 + .../cmdlets/NewAzMobileNetworkDataNetwork_CreateExpanded.cs | 1 + .../NewAzMobileNetworkDataNetwork_CreateViaIdentityExpanded.cs | 1 + ...NetworkDataNetwork_CreateViaIdentityMobileNetworkExpanded.cs | 1 + .../NewAzMobileNetworkDataNetwork_CreateViaJsonFilePath.cs | 1 + .../NewAzMobileNetworkDataNetwork_CreateViaJsonString.cs | 1 + .../NewAzMobileNetworkPacketCoreControlPlane_CreateExpanded.cs | 1 + ...leNetworkPacketCoreControlPlane_CreateViaIdentityExpanded.cs | 1 + ...MobileNetworkPacketCoreControlPlane_CreateViaJsonFilePath.cs | 1 + ...AzMobileNetworkPacketCoreControlPlane_CreateViaJsonString.cs | 1 + .../NewAzMobileNetworkPacketCoreDataPlane_CreateExpanded.cs | 1 + ...obileNetworkPacketCoreDataPlane_CreateViaIdentityExpanded.cs | 1 + ...DataPlane_CreateViaIdentityPacketCoreControlPlaneExpanded.cs | 1 + ...wAzMobileNetworkPacketCoreDataPlane_CreateViaJsonFilePath.cs | 1 + ...NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonString.cs | 1 + .../cmdlets/NewAzMobileNetworkService_CreateExpanded.cs | 1 + .../NewAzMobileNetworkService_CreateViaIdentityExpanded.cs | 1 + ...bileNetworkService_CreateViaIdentityMobileNetworkExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkService_CreateViaJsonFilePath.cs | 1 + .../cmdlets/NewAzMobileNetworkService_CreateViaJsonString.cs | 1 + .../cmdlets/NewAzMobileNetworkSimGroup_CreateExpanded.cs | 1 + .../NewAzMobileNetworkSimGroup_CreateViaIdentityExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonFilePath.cs | 1 + .../cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonString.cs | 1 + .../cmdlets/NewAzMobileNetworkSimPolicy_CreateExpanded.cs | 1 + .../NewAzMobileNetworkSimPolicy_CreateViaIdentityExpanded.cs | 1 + ...leNetworkSimPolicy_CreateViaIdentityMobileNetworkExpanded.cs | 1 + .../NewAzMobileNetworkSimPolicy_CreateViaJsonFilePath.cs | 1 + .../cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonString.cs | 1 + .../generated/cmdlets/NewAzMobileNetworkSim_CreateExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkSim_CreateViaIdentityExpanded.cs | 1 + .../NewAzMobileNetworkSim_CreateViaIdentitySimGroupExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkSim_CreateViaJsonFilePath.cs | 1 + .../cmdlets/NewAzMobileNetworkSim_CreateViaJsonString.cs | 1 + .../generated/cmdlets/NewAzMobileNetworkSite_CreateExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkSite_CreateViaIdentityExpanded.cs | 1 + ...zMobileNetworkSite_CreateViaIdentityMobileNetworkExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkSite_CreateViaJsonFilePath.cs | 1 + .../cmdlets/NewAzMobileNetworkSite_CreateViaJsonString.cs | 1 + .../generated/cmdlets/NewAzMobileNetworkSlice_CreateExpanded.cs | 1 + .../NewAzMobileNetworkSlice_CreateViaIdentityExpanded.cs | 1 + ...MobileNetworkSlice_CreateViaIdentityMobileNetworkExpanded.cs | 1 + .../cmdlets/NewAzMobileNetworkSlice_CreateViaJsonFilePath.cs | 1 + .../cmdlets/NewAzMobileNetworkSlice_CreateViaJsonString.cs | 1 + .../generated/cmdlets/NewAzMobileNetwork_CreateExpanded.cs | 1 + .../cmdlets/NewAzMobileNetwork_CreateViaIdentityExpanded.cs | 1 + .../cmdlets/NewAzMobileNetwork_CreateViaJsonFilePath.cs | 1 + .../generated/cmdlets/NewAzMobileNetwork_CreateViaJsonString.cs | 1 + .../cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_Delete.cs | 1 + ...emoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentity.cs | 1 + ...tachedDataNetwork_DeleteViaIdentityPacketCoreControlPlane.cs | 1 + ...kAttachedDataNetwork_DeleteViaIdentityPacketCoreDataPlane.cs | 1 + .../cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkExpanded.cs | 1 + ...emoveAzMobileNetworkBulkSimDelete_BulkViaIdentityExpanded.cs | 1 + .../RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonFilePath.cs | 1 + .../RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonString.cs | 1 + .../cmdlets/RemoveAzMobileNetworkDataNetwork_Delete.cs | 1 + .../RemoveAzMobileNetworkDataNetwork_DeleteViaIdentity.cs | 1 + ...AzMobileNetworkDataNetwork_DeleteViaIdentityMobileNetwork.cs | 1 + .../RemoveAzMobileNetworkPacketCoreControlPlane_Delete.cs | 1 + ...veAzMobileNetworkPacketCoreControlPlane_DeleteViaIdentity.cs | 1 + .../cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_Delete.cs | 1 + ...emoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentity.cs | 1 + ...cketCoreDataPlane_DeleteViaIdentityPacketCoreControlPlane.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetworkService_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentity.cs | 1 + ...moveAzMobileNetworkService_DeleteViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetworkSimGroup_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetworkSimGroup_DeleteViaIdentity.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetworkSimPolicy_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentity.cs | 1 + ...veAzMobileNetworkSimPolicy_DeleteViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetworkSim_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentity.cs | 1 + .../RemoveAzMobileNetworkSim_DeleteViaIdentitySimGroup.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetworkSite_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentity.cs | 1 + .../RemoveAzMobileNetworkSite_DeleteViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetworkSlice_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentity.cs | 1 + ...RemoveAzMobileNetworkSlice_DeleteViaIdentityMobileNetwork.cs | 1 + .../generated/cmdlets/RemoveAzMobileNetwork_Delete.cs | 1 + .../cmdlets/RemoveAzMobileNetwork_DeleteViaIdentity.cs | 1 + ...ctPacketCoreControlPlaneDiagnosticPackage_CollectExpanded.cs | 1 + ...eControlPlaneDiagnosticPackage_CollectViaIdentityExpanded.cs | 1 + ...tCoreControlPlaneDiagnosticPackage_CollectViaJsonFilePath.cs | 1 + ...ketCoreControlPlaneDiagnosticPackage_CollectViaJsonString.cs | 1 + .../UpdateAzMobileNetworkAttachedDataNetwork_UpdateExpanded.cs | 1 + ...obileNetworkAttachedDataNetwork_UpdateViaIdentityExpanded.cs | 1 + ...taNetwork_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs | 1 + ...dDataNetwork_UpdateViaIdentityPacketCoreDataPlaneExpanded.cs | 1 + .../UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkExpanded.cs | 1 + ...bileNetworkBulkSimUploadEncrypted_BulkViaIdentityExpanded.cs | 1 + ...AzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonFilePath.cs | 1 + ...teAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonString.cs | 1 + .../cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkExpanded.cs | 1 + ...pdateAzMobileNetworkBulkSimUpload_BulkViaIdentityExpanded.cs | 1 + .../UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonFilePath.cs | 1 + .../UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonString.cs | 1 + .../cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateExpanded.cs | 1 + ...pdateAzMobileNetworkDataNetwork_UpdateViaIdentityExpanded.cs | 1 + ...NetworkDataNetwork_UpdateViaIdentityMobileNetworkExpanded.cs | 1 + ...pdateAzMobileNetworkPacketCoreControlPlane_UpdateExpanded.cs | 1 + ...leNetworkPacketCoreControlPlane_UpdateViaIdentityExpanded.cs | 1 + .../UpdateAzMobileNetworkPacketCoreDataPlane_UpdateExpanded.cs | 1 + ...obileNetworkPacketCoreDataPlane_UpdateViaIdentityExpanded.cs | 1 + ...DataPlane_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetworkService_UpdateExpanded.cs | 1 + .../UpdateAzMobileNetworkService_UpdateViaIdentityExpanded.cs | 1 + ...bileNetworkService_UpdateViaIdentityMobileNetworkExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSimGroup_UpdateExpanded.cs | 1 + .../UpdateAzMobileNetworkSimGroup_UpdateViaIdentityExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateExpanded.cs | 1 + .../UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityExpanded.cs | 1 + ...leNetworkSimPolicy_UpdateViaIdentityMobileNetworkExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSim_UpdateExpanded.cs | 1 + .../UpdateAzMobileNetworkSim_UpdateViaIdentityExpanded.cs | 1 + ...pdateAzMobileNetworkSim_UpdateViaIdentitySimGroupExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSite_UpdateExpanded.cs | 1 + .../UpdateAzMobileNetworkSite_UpdateViaIdentityExpanded.cs | 1 + ...zMobileNetworkSite_UpdateViaIdentityMobileNetworkExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonFilePath.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonString.cs | 1 + .../cmdlets/UpdateAzMobileNetworkSlice_UpdateExpanded.cs | 1 + .../UpdateAzMobileNetworkSlice_UpdateViaIdentityExpanded.cs | 1 + ...MobileNetworkSlice_UpdateViaIdentityMobileNetworkExpanded.cs | 1 + .../generated/cmdlets/UpdateAzMobileNetwork_UpdateExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetwork_UpdateViaIdentityExpanded.cs | 1 + .../cmdlets/UpdateAzMobileNetwork_UpdateViaJsonFilePath.cs | 1 + .../cmdlets/UpdateAzMobileNetwork_UpdateViaJsonString.cs | 1 + 190 files changed, 189 insertions(+), 2 deletions(-) diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/Properties/AssemblyInfo.cs b/generated/MobileNetwork/MobileNetwork.Autorest/Properties/AssemblyInfo.cs index 5631e55b9ac6..082ba764f18a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/Properties/AssemblyInfo.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/Properties/AssemblyInfo.cs @@ -24,4 +24,3 @@ [assembly: System.Reflection.AssemblyVersionAttribute("0.4.2")] [assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] [assembly: System.CLSCompliantAttribute(false)] - diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generate-info.json b/generated/MobileNetwork/MobileNetwork.Autorest/generate-info.json index 0ff35be4f6ff..fed0aa6635b2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generate-info.json +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "f5b92827-b31e-4e69-8360-0abb84f10ef3" + "generate_Id": "e23891c5-7b89-4c35-a048-c4bbec1642e9" } diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_Reinstall.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_Reinstall.cs index 8bc997c85372..f44f34d443aa 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_Reinstall.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_Reinstall.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Reinstall=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/reinstall" /// [global::System.Management.Automation.Cmdlet("Deploy", @"AzMobileNetworkReinstallPacketCoreControlPlane_Reinstall", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Reinstall the specified packet core control plane. This action will remove any transaction state from the packet core to return it to a known state. This action will cause a service outage.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_ReinstallViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_ReinstallViaIdentity.cs index 604192e90fea..aae0940acdde 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_ReinstallViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkReinstallPacketCoreControlPlane_ReinstallViaIdentity.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Reinstall=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/reinstall" /// [global::System.Management.Automation.Cmdlet("Deploy", @"AzMobileNetworkReinstallPacketCoreControlPlane_ReinstallViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Reinstall the specified packet core control plane. This action will remove any transaction state from the packet core to return it to a known state. This action will cause a service outage.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_Rollback.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_Rollback.cs index cc1c59331d29..ceaa28559a55 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_Rollback.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_Rollback.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Rollback=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/rollback" /// [global::System.Management.Automation.Cmdlet("Deploy", @"AzMobileNetworkRollbackPacketCoreControlPlane_Rollback", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Roll back the specified packet core control plane to the previous version, \""rollbackVersion\"". Multiple consecutive rollbacks are not possible. This action may cause a service outage.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_RollbackViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_RollbackViaIdentity.cs index 25c8079f7377..3bbfb4da968d 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_RollbackViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/DeployAzMobileNetworkRollbackPacketCoreControlPlane_RollbackViaIdentity.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Rollback=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/rollback" /// [global::System.Management.Automation.Cmdlet("Deploy", @"AzMobileNetworkRollbackPacketCoreControlPlane_RollbackViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Roll back the specified packet core control plane to the previous version, \""rollbackVersion\"". Multiple consecutive rollbacks are not possible. This action may cause a service outage.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_Get.cs index ad16be9b2d56..b3a77a1b2d70 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkAttachedDataNetwork_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentity.cs index c16c15a8438e..0da2743c49a1 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkAttachedDataNetwork_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreControlPlane.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreControlPlane.cs index 24a0f6a9830a..d381f057305e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreControlPlane.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreControlPlane.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreControlPlane")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreDataPlane.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreDataPlane.cs index d06c9eca60b5..5119545400ad 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreDataPlane.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreDataPlane.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkAttachedDataNetwork_GetViaIdentityPacketCoreDataPlane")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_List.cs index 6c6741183411..debc10cfe227 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkAttachedDataNetwork_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByPacketCoreDataPlane=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkAttachedDataNetwork_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets all the attached data networks associated with a packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_Get.cs index 57978ff31d0a..b13c0f5b0ba5 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkDataNetwork_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentity.cs index 99aaffefd288..3559188bb7fd 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkDataNetwork_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentityMobileNetwork.cs index 7287fcd722d2..83825e9bd712 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_GetViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkDataNetwork_GetViaIdentityMobileNetwork")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_List.cs index 1f67603f077f..f3ea16238c98 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkDataNetwork_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByMobileNetwork=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkDataNetwork_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all data networks in the mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkOperation_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkOperation_List.cs index 7eea0129c1d1..1b3767ad22cf 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkOperation_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkOperation_List.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkOperation_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IOperation))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets a list of the operations.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_Get.cs index 3092f7c8ddf3..a5fedf2bd4e7 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/{versionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlaneVersion_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlaneVersion))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core control plane version.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_GetViaIdentity.cs index 6ad872e63924..773265ca5bd9 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/{versionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlaneVersion_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlaneVersion))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core control plane version.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_List.cs index 168ff476455d..d9ec1be49816 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlaneVersion_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] List=>GET:"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlaneVersion_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlaneVersion))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all supported packet core control planes versions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_Get.cs index 35a0e331c1b1..a64c3e3dcbb4 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlane_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_GetViaIdentity.cs index ff3795fdcb43..a0bdf34904ca 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlane_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List.cs index ad22afba7e4a..78e5786f2ac0 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlane_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all the packet core control planes in a subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List1.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List1.cs index d8156a45e79f..de458bc09cab 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List1.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreControlPlane_List1.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreControlPlane_List1")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all the packet core control planes in a resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_Get.cs index e9a4fbaae41d..f9c88889c071 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreDataPlane_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentity.cs index f7caec768110..586900b70b4c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreDataPlane_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentityPacketCoreControlPlane.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentityPacketCoreControlPlane.cs index f25e2927e5a6..e49a4b9183ee 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentityPacketCoreControlPlane.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_GetViaIdentityPacketCoreControlPlane.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreDataPlane_GetViaIdentityPacketCoreControlPlane")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_List.cs index 3530baf0d052..0ed2120f8b2b 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkPacketCoreDataPlane_List.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByPacketCoreControlPlane=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkPacketCoreDataPlane_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all the packet core data planes associated with a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_Get.cs index 9cb885989c4e..25d57f72f24c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkService_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentity.cs index 104c44d3db3f..16566e414fdb 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkService_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentityMobileNetwork.cs index 5f37ff663b16..20498331e53d 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_GetViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkService_GetViaIdentityMobileNetwork")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_List.cs index 6cc307de410b..a47501e3b18c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkService_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByMobileNetwork=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkService_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets all the services in a mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_Get.cs index 7866b561b506..2af20a1abad3 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimGroup_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_GetViaIdentity.cs index d58242b0c43d..a5e3a58bfae2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimGroup_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List.cs index 61f1c4d7930f..6a7dfa28368c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.MobileNetwork/simGroups" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimGroup_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets all the SIM groups in a subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List1.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List1.cs index 6face4a76142..94c16b6be5fe 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List1.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimGroup_List1.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimGroup_List1")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets all the SIM groups in a resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_Get.cs index 91a7b1a1484d..f8d59e4baf09 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimPolicy_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM policy.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentity.cs index ccf198adf934..6eb77341207c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimPolicy_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM policy.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentityMobileNetwork.cs index 56de471dde96..d6b68f088fd3 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_GetViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimPolicy_GetViaIdentityMobileNetwork")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM policy.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_List.cs index 5b230681386b..3397f649361f 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSimPolicy_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByMobileNetwork=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSimPolicy_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets all the SIM policies in a mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_Get.cs index 8e06d2b50f3b..8074b37f30ab 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSim_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentity.cs index e0e8b63780b7..d741d56da232 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSim_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentitySimGroup.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentitySimGroup.cs index 9e582ce5aef1..85b3d0f32b9d 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentitySimGroup.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_GetViaIdentitySimGroup.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSim_GetViaIdentitySimGroup")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_List.cs index 0f885c419a82..32010ffde76c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSim_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSim_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets all the SIMs in a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_Get.cs index e39996dc9e92..15bd0cca37bf 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSite_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified mobile network site.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentity.cs index abf76e7cda57..e59f22421a5e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSite_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified mobile network site.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentityMobileNetwork.cs index e305ec9dec06..5aacb04dffaf 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_GetViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSite_GetViaIdentityMobileNetwork")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified mobile network site.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_List.cs index a082eff2e8cb..ed40717e1608 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSite_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByMobileNetwork=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSite_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all sites in the mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_Get.cs index 0df08a12ae2a..cb59a95b73fd 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSlice_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified network slice.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentity.cs index 0043ff87fc82..41e913b7d644 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSlice_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified network slice.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentityMobileNetwork.cs index d5e1c0581bc9..99fb46019571 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_GetViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSlice_GetViaIdentityMobileNetwork")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified network slice.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_List.cs index 0836e2d0eed9..d8eb39dfb3fa 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetworkSlice_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByMobileNetwork=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetworkSlice_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all slices in the mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_Get.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_Get.cs index 0d5bc7f4b3b4..78320cd2d7a7 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_Get.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_Get.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetwork_Get")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_GetViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_GetViaIdentity.cs index c3b39561b312..618c8d424bb7 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_GetViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_GetViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetwork_GetViaIdentity")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Gets information about the specified mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List.cs index d156273ccd63..ed46f2935e1b 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.MobileNetwork/mobileNetworks" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetwork_List")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all the mobile networks in a subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List1.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List1.cs index cb7b144ca514..62a9a596abbd 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List1.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/GetAzMobileNetwork_List1.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMobileNetwork_List1")] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Lists all the mobile networks in a resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateExpanded.cs index c5e40666a008..a545096c7114 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkAttachedDataNetwork_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityExpanded.cs index 64bb8786fbfc..a8822f100554 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkAttachedDataNetwork_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreControlPlaneExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreControlPlaneExpanded.cs index d7001e7d2a30..6ab8113ce1bf 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreControlPlaneExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreControlPlaneExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreControlPlaneExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreDataPlaneExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreDataPlaneExpanded.cs index 661cfa9ed536..c3291987651c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreDataPlaneExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreDataPlaneExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkAttachedDataNetwork_CreateViaIdentityPacketCoreDataPlaneExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonFilePath.cs index 37953df3cdb7..611f50ea3dcf 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkAttachedDataNetwork_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonString.cs index 9ad94a950653..fc70ac2ed51f 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkAttachedDataNetwork_CreateViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkAttachedDataNetwork_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateExpanded.cs index 636bac42ebf2..23e508aba8ed 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkDataNetwork_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityExpanded.cs index 2ae2652abe0a..7932503bf869 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkDataNetwork_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityMobileNetworkExpanded.cs index 48e4d9a29323..4315b45851d1 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaIdentityMobileNetworkExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkDataNetwork_CreateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonFilePath.cs index 5952f6296a17..65eb8b38778f 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkDataNetwork_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonString.cs index 480f1eecb66f..06b50eb8ab2c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkDataNetwork_CreateViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkDataNetwork_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateExpanded.cs index 2dafaccfe8ea..0995eec558c2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreControlPlane_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaIdentityExpanded.cs index 65586991adc9..6f45c09ec11a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreControlPlane_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonFilePath.cs index 142de9acc0da..02ca201adf1c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreControlPlane_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonString.cs index c8309494633a..46bf4fe7b122 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreControlPlane_CreateViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreControlPlane_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateExpanded.cs index ebf3895c569e..1916d1f8f7ae 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreDataPlane_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityExpanded.cs index 7be4d5a51824..b8a3a9934e7a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreDataPlane_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityPacketCoreControlPlaneExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityPacketCoreControlPlaneExpanded.cs index 561747ed78dc..fdd4c3a3bac1 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityPacketCoreControlPlaneExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaIdentityPacketCoreControlPlaneExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreDataPlane_CreateViaIdentityPacketCoreControlPlaneExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonFilePath.cs index 6a4c09bb7536..642d718906bc 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreDataPlane_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonString.cs index 2a54c7e68392..848d241c3bd6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkPacketCoreDataPlane_CreateViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkPacketCoreDataPlane_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateExpanded.cs index bec4f6516532..7a46e2d0f450 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkService_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityExpanded.cs index 7d6836c083eb..73e0a3e13fa2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkService_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityMobileNetworkExpanded.cs index 09d9a7c79693..1ddb618f1bc2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaIdentityMobileNetworkExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkService_CreateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonFilePath.cs index 700d5cf49624..99bbecbbbc3a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkService_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonString.cs index 2b65acb8742f..6eaad9f669f6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkService_CreateViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkService_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateExpanded.cs index dd581802a556..08fc553f057d 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimGroup_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaIdentityExpanded.cs index d137addb2a13..4a56e3a64f42 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimGroup_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonFilePath.cs index 97c2dc95aa35..c8108f15980f 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimGroup_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonString.cs index 8ec18e34cb1a..fbd931b26bae 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimGroup_CreateViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimGroup_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateExpanded.cs index b02a1e5d6bad..19927bc1f547 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimPolicy_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityExpanded.cs index d9097c50fcaa..6f2899effff8 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimPolicy_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityMobileNetworkExpanded.cs index 93223afba63f..33feeff17d01 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaIdentityMobileNetworkExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimPolicy_CreateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonFilePath.cs index 55bfa53bd224..73b7d4d2a63a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimPolicy_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonString.cs index 14b5f72b76d4..ccce3d9d50b6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSimPolicy_CreateViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSimPolicy_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateExpanded.cs index 8789f1b6808a..11eeb561cc2b 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSim_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentityExpanded.cs index 375cd629aea4..34bf700e7333 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSim_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentitySimGroupExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentitySimGroupExpanded.cs index fea04cf9d1a0..02117bf916b8 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentitySimGroupExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaIdentitySimGroupExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSim_CreateViaIdentitySimGroupExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonFilePath.cs index 6f1d49d57a74..07486fecc4e2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSim_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonString.cs index dc30fd06c7e1..1b6675074bd5 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSim_CreateViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSim_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateExpanded.cs index a0e6c80b8ff2..4ed25909286e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSite_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network site. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityExpanded.cs index 676d7b3aef34..f55bed9cb39c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSite_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network site. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityMobileNetworkExpanded.cs index ad1616381d15..a59ee36c35ef 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaIdentityMobileNetworkExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSite_CreateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network site. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonFilePath.cs index dd20fb09a5fd..fecfec95d6f6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonFilePath.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSite_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network site. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonString.cs index 294d3a873ddc..eac00a50cfbc 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSite_CreateViaJsonString.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSite_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network site. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateExpanded.cs index af7cccebd077..359bf24a7bc9 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSlice_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityExpanded.cs index 0c3bf75172ec..79565cd32a75 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSlice_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityMobileNetworkExpanded.cs index 264c1e3cdc37..6d058b9481d1 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaIdentityMobileNetworkExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSlice_CreateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonFilePath.cs index aa1bda402d04..70363fd513ae 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSlice_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonString.cs index 59b07af0d63a..4b85daba9d04 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetworkSlice_CreateViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetworkSlice_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateExpanded.cs index b6fd3ce606fb..95f521adbb23 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetwork_CreateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaIdentityExpanded.cs index 92fff653ad44..fd8e254c8678 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetwork_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonFilePath.cs index dc6e4d8556a8..303e3accbae6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetwork_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonString.cs index db1ee01a1dad..9385c11ba321 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/NewAzMobileNetwork_CreateViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMobileNetwork_CreateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"create a mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_Delete.cs index f537f1a6e964..cc99d6b1b69f 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkAttachedDataNetwork_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentity.cs index daf9f2d45434..9b69a152c954 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkAttachedDataNetwork_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreControlPlane.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreControlPlane.cs index 257b4fb55b59..d9ce2c32fdcc 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreControlPlane.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreControlPlane.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreControlPlane", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreDataPlane.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreDataPlane.cs index 6a66ce6f603b..9777d97d41f7 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreDataPlane.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreDataPlane.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkAttachedDataNetwork_DeleteViaIdentityPacketCoreDataPlane", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified attached data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkExpanded.cs index 9f8507203cc4..916aeb5120f2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkDelete=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/deleteSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkBulkSimDelete_BulkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk delete SIMs from a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaIdentityExpanded.cs index 8183e100a52d..7839ff2adef1 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkDelete=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/deleteSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkBulkSimDelete_BulkViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk delete SIMs from a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonFilePath.cs index f534b38237e6..cb25fbaab07f 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkDelete=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/deleteSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkBulkSimDelete_BulkViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk delete SIMs from a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonString.cs index 121171bc258e..57ac55671c38 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkBulkSimDelete_BulkViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkDelete=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/deleteSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkBulkSimDelete_BulkViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk delete SIMs from a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_Delete.cs index 80f75bdd44ed..97ad909f389a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkDataNetwork_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentity.cs index 0c49b9522973..12a4e3ecda86 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkDataNetwork_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentityMobileNetwork.cs index 1873ff8095d9..fccf9c9fbcef 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkDataNetwork_DeleteViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkDataNetwork_DeleteViaIdentityMobileNetwork", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified data network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_Delete.cs index ec0f58c62cc8..842b3615b2b8 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkPacketCoreControlPlane_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_DeleteViaIdentity.cs index 4f550122fc92..af3ccb180811 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreControlPlane_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkPacketCoreControlPlane_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_Delete.cs index b017088ea23f..cfd83c0f2e05 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkPacketCoreDataPlane_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentity.cs index ea7cf3c83286..6f3eac3182f5 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkPacketCoreDataPlane_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentityPacketCoreControlPlane.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentityPacketCoreControlPlane.cs index 80980ece55ac..0e7bb34da5c2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentityPacketCoreControlPlane.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkPacketCoreDataPlane_DeleteViaIdentityPacketCoreControlPlane.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkPacketCoreDataPlane_DeleteViaIdentityPacketCoreControlPlane", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_Delete.cs index f99c3248df07..5f8fce730d77 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkService_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentity.cs index 172fbe363afe..ebb4ddf8c0a1 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkService_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentityMobileNetwork.cs index 3fe7d4b2b2ca..e83b125a996d 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkService_DeleteViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkService_DeleteViaIdentityMobileNetwork", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_Delete.cs index dfedaf0eb00f..7e1bf81ff3a4 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSimGroup_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_DeleteViaIdentity.cs index fca181c1b7b8..d96ae734305c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimGroup_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSimGroup_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_Delete.cs index 80a6ccd2361b..1a9edc913974 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSimPolicy_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM policy.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentity.cs index 61712b181a79..fd6c3c9757c7 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSimPolicy_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM policy.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentityMobileNetwork.cs index a10bc3a68a0e..9f679656c8f2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSimPolicy_DeleteViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSimPolicy_DeleteViaIdentityMobileNetwork", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM policy.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_Delete.cs index 3849ff3b4560..3bccd6212a1e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSim_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentity.cs index 601b19493bc4..08fb6185eacc 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSim_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentitySimGroup.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentitySimGroup.cs index 9277ecdbe9bf..3be9ec0bd59e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentitySimGroup.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSim_DeleteViaIdentitySimGroup.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSim_DeleteViaIdentitySimGroup", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_Delete.cs index 08ff2f145207..c35252c42b48 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_Delete.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSite_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified mobile network site. This will also delete any network functions that are a part of this site.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentity.cs index c7ceddb93b71..88d5c976b3c9 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentity.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSite_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified mobile network site. This will also delete any network functions that are a part of this site.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentityMobileNetwork.cs index d7f84f370490..177a8670f2a6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSite_DeleteViaIdentityMobileNetwork.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSite_DeleteViaIdentityMobileNetwork", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified mobile network site. This will also delete any network functions that are a part of this site.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_Delete.cs index 792b7a42641c..c49819651760 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSlice_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified network slice.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentity.cs index 4d162eac9d7b..07dc683d39d4 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSlice_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified network slice.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentityMobileNetwork.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentityMobileNetwork.cs index de06e487b4ea..65a398bc85c0 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentityMobileNetwork.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetworkSlice_DeleteViaIdentityMobileNetwork.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetworkSlice_DeleteViaIdentityMobileNetwork", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified network slice.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_Delete.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_Delete.cs index 0251dc6787c5..51412edd605a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_Delete.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_Delete.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetwork_Delete", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_DeleteViaIdentity.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_DeleteViaIdentity.cs index ba2891c4c032..00ab407e5d3e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_DeleteViaIdentity.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/RemoveAzMobileNetwork_DeleteViaIdentity.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMobileNetwork_DeleteViaIdentity", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Deletes the specified mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectExpanded.cs index 2cfd76054ff4..8dcff13d85c8 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CollectDiagnosticsPackage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/collectDiagnosticsPackage" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Trace, @"AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Collect a diagnostics package for the specified packet core control plane. This action will upload the diagnostics to a storage account.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaIdentityExpanded.cs index 37594f0920ae..c01c58accd8a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaIdentityExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CollectDiagnosticsPackage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/collectDiagnosticsPackage" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Trace, @"AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Collect a diagnostics package for the specified packet core control plane. This action will upload the diagnostics to a storage account.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonFilePath.cs index 78ab86d19ce0..88a6b6d8bebc 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonFilePath.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CollectDiagnosticsPackage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/collectDiagnosticsPackage" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Trace, @"AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Collect a diagnostics package for the specified packet core control plane. This action will upload the diagnostics to a storage account.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonString.cs index 8fcb9d359569..d7c12f314938 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/TraceAzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonString.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CollectDiagnosticsPackage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/collectDiagnosticsPackage" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Trace, @"AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage_CollectViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Collect a diagnostics package for the specified packet core control plane. This action will upload the diagnostics to a storage account.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateExpanded.cs index 6639f0a3d7c0..c3d4e2461909 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkAttachedDataNetwork_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityExpanded.cs index d1608daad7aa..9ef082a9f8a3 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkAttachedDataNetwork_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs index 46d75edc64a6..8ffb3935c121 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreControlPlaneExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreDataPlaneExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreDataPlaneExpanded.cs index 06d4a7c03ff9..3d774dc8ebe3 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreDataPlaneExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreDataPlaneExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkAttachedDataNetwork_UpdateViaIdentityPacketCoreDataPlaneExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update an attached data network. Must be created in the same location as its parent packet core data plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkExpanded.cs index 817f0965784a..c4be4e9bdfc5 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUploadEncrypted=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadEncryptedSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUploadEncrypted_BulkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs in encrypted form to a SIM group. The SIM credentials must be encrypted.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaIdentityExpanded.cs index 88fef7ee54c4..848fe9ca7d51 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaIdentityExpanded.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUploadEncrypted=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadEncryptedSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUploadEncrypted_BulkViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs in encrypted form to a SIM group. The SIM credentials must be encrypted.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonFilePath.cs index d7ca07e5211c..e05a2c19b890 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonFilePath.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUploadEncrypted=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadEncryptedSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs in encrypted form to a SIM group. The SIM credentials must be encrypted.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonString.cs index b43e9878e360..b84ea76a35f4 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonString.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUploadEncrypted=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadEncryptedSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUploadEncrypted_BulkViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs in encrypted form to a SIM group. The SIM credentials must be encrypted.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkExpanded.cs index 7e2c1926590a..1b01927cca74 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUpload=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUpload_BulkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs to a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaIdentityExpanded.cs index 0c49d5f9b7b6..cc98d5c8ed67 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUpload=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUpload_BulkViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs to a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonFilePath.cs index 149a088f513f..40c5342e1940 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUpload=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUpload_BulkViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs to a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonString.cs index 4290fb3bf2be..005a45061241 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkBulkSimUpload_BulkViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] BulkUpload=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadSims" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkBulkSimUpload_BulkViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"Bulk upload SIMs to a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateExpanded.cs index ced70776c089..aa7234b4a7a4 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkDataNetwork_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityExpanded.cs index af6403f8ba5f..b2df16260100 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkDataNetwork_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityMobileNetworkExpanded.cs index cc4550468a0a..de3db3b3cd20 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkDataNetwork_UpdateViaIdentityMobileNetworkExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkDataNetwork_UpdateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a data network. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateExpanded.cs index 053837903d71..6697bf091896 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkPacketCoreControlPlane_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateViaIdentityExpanded.cs index daba4184f0a1..60c809515358 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreControlPlane_UpdateViaIdentityExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkPacketCoreControlPlane_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateExpanded.cs index 13406b4064b1..ed9adea80ee6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkPacketCoreDataPlane_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityExpanded.cs index 49e169cfca13..bc551d7a10c2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs index c7d630a2e4c5..4aff03e195c3 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityPacketCoreControlPlaneExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkPacketCoreDataPlane_UpdateViaIdentityPacketCoreControlPlaneExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a packet core data plane. Must be created in the same location as its parent packet core control plane.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateExpanded.cs index 18028037c6cc..217384fe86b6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateExpanded.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkService_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityExpanded.cs index 3f8885a4248a..b8038540e0bd 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityExpanded.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkService_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityMobileNetworkExpanded.cs index 77e0c861f7ee..92fafdda4fc4 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkService_UpdateViaIdentityMobileNetworkExpanded.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkService_UpdateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a service. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateExpanded.cs index e9d05ce37029..86a7de959b06 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSimGroup_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateViaIdentityExpanded.cs index acd57a4e3297..78053273f77a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimGroup_UpdateViaIdentityExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSimGroup_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateExpanded.cs index 6ec9831e7813..1d6c168da4dd 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSimPolicy_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityExpanded.cs index 21f10b68fc72..87d31abfe341 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSimPolicy_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityMobileNetworkExpanded.cs index 056b49e73af0..88f58aa4a7ee 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSimPolicy_UpdateViaIdentityMobileNetworkExpanded.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSimPolicy_UpdateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM policy. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateExpanded.cs index 53106252bb7b..9ddf8a828652 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSim_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentityExpanded.cs index 812a06503e12..4e97c6f1336a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentityExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSim_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentitySimGroupExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentitySimGroupExpanded.cs index debcb6464ac1..1a14c05873c6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentitySimGroupExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSim_UpdateViaIdentitySimGroupExpanded.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSim_UpdateViaIdentitySimGroupExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a SIM.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateExpanded.cs index ed046e30748d..c0a39b537e1a 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSite_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update site tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityExpanded.cs index e54a8846ded0..32292e6390d2 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSite_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update site tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityMobileNetworkExpanded.cs index a093247498c6..f49d57e23e1b 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaIdentityMobileNetworkExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSite_UpdateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update site tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonFilePath.cs index e5a71501c676..d20da1e6ead7 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSite_UpdateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update site tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonString.cs index 1d0992612d31..131946060785 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSite_UpdateViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSite_UpdateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update site tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateExpanded.cs index ee645b048d5b..716c3f3cc9af 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateExpanded.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSlice_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityExpanded.cs index ad24fbabadba..5dfa5f15abb6 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityExpanded.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSlice_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityMobileNetworkExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityMobileNetworkExpanded.cs index 85721612f48c..4de0ba37662b 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityMobileNetworkExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetworkSlice_UpdateViaIdentityMobileNetworkExpanded.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetworkSlice_UpdateViaIdentityMobileNetworkExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update a network slice. Must be created in the same location as its parent mobile network.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateExpanded.cs index 56343139079d..2a849c2a0fd0 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetwork_UpdateExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update mobile network tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaIdentityExpanded.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaIdentityExpanded.cs index 07c5ac5877c1..befc6875ad9c 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaIdentityExpanded.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaIdentityExpanded.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetwork_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update mobile network tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonFilePath.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonFilePath.cs index 56ab5e619fdc..17d3e0cb3781 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonFilePath.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonFilePath.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetwork_UpdateViaJsonFilePath", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update mobile network tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] diff --git a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonString.cs b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonString.cs index b64b7e7d3f0f..08c033b1958e 100644 --- a/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonString.cs +++ b/generated/MobileNetwork/MobileNetwork.Autorest/generated/cmdlets/UpdateAzMobileNetwork_UpdateViaJsonString.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Cmdlets /// [OpenAPI] UpdateTags=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMobileNetwork_UpdateViaJsonString", SupportsShouldProcess = true)] + [Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.CmdletBreakingChange("14.5.0", "0.5.0", "2025/09/30")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork))] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Description(@"update mobile network tags.")] [global::Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Generated] From fa7a224110019516630b10ec4396211a6c182f2a Mon Sep 17 00:00:00 2001 From: Azure PowerShell <65331932+azure-powershell-bot@users.noreply.github.com> Date: Tue, 27 May 2025 12:17:33 +1000 Subject: [PATCH 05/14] [skip ci] Archive 77db2d518eec600b907288a9150c5e65dfe66a68 (#27847) --- .../exports/New-AzDataMigrationToSqlManagedInstance.ps1 | 6 ++++++ .../exports/ProxyCmdletDefinitions.ps1 | 6 ++++++ .../DataMigration/DataMigration.Autorest/generate-info.json | 2 +- .../internal/New-AzDataMigrationToSqlManagedInstance.ps1 | 6 ++++++ .../internal/ProxyCmdletDefinitions.ps1 | 6 ++++++ 5 files changed, 25 insertions(+), 1 deletion(-) diff --git a/generated/DataMigration/DataMigration.Autorest/exports/New-AzDataMigrationToSqlManagedInstance.ps1 b/generated/DataMigration/DataMigration.Autorest/exports/New-AzDataMigrationToSqlManagedInstance.ps1 index af00547e125b..db543b75740f 100644 --- a/generated/DataMigration/DataMigration.Autorest/exports/New-AzDataMigrationToSqlManagedInstance.ps1 +++ b/generated/DataMigration/DataMigration.Autorest/exports/New-AzDataMigrationToSqlManagedInstance.ps1 @@ -23,6 +23,12 @@ Create a new database migration to a given SQL Managed Instance. $sourcePassword = ConvertTo-SecureString -String $password -AsPlainText -Force $filesharePassword = ConvertTo-SecureString -String $password -AsPlainText -Force New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -StorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -StorageAccountKey "aaaaacccccoouunntkkkkeeeyyy" -FileSharePath "\\filesharepath.com\SharedBackup\MyBackUps" -FileShareUsername "filesharepath\User" -FileSharePassword $filesharePassword -SourceSqlConnectionAuthentication "SqlAuthentication" -SourceSqlConnectionDataSource "LabServer.database.net" -SourceSqlConnectionUserName "User" -SourceSqlConnectionPassword $sourcePassword -SourceDatabaseName "AdventureWorks" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "SystemAssigned" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "UserAssigned" -AzureBlobUserAssignedIdentity "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MyUserAssignedIdentity" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" -AzureBlobAccountKey "accountKey" .Outputs Microsoft.Azure.PowerShell.Cmdlets.DataMigration.Models.Api20250315Preview.IDatabaseMigrationSqlMi diff --git a/generated/DataMigration/DataMigration.Autorest/exports/ProxyCmdletDefinitions.ps1 b/generated/DataMigration/DataMigration.Autorest/exports/ProxyCmdletDefinitions.ps1 index ac6074e6bf05..dd0bda8c2005 100644 --- a/generated/DataMigration/DataMigration.Autorest/exports/ProxyCmdletDefinitions.ps1 +++ b/generated/DataMigration/DataMigration.Autorest/exports/ProxyCmdletDefinitions.ps1 @@ -5394,6 +5394,12 @@ Create a new database migration to a given SQL Managed Instance. $sourcePassword = ConvertTo-SecureString -String $password -AsPlainText -Force $filesharePassword = ConvertTo-SecureString -String $password -AsPlainText -Force New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -StorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -StorageAccountKey "aaaaacccccoouunntkkkkeeeyyy" -FileSharePath "\\filesharepath.com\SharedBackup\MyBackUps" -FileShareUsername "filesharepath\User" -FileSharePassword $filesharePassword -SourceSqlConnectionAuthentication "SqlAuthentication" -SourceSqlConnectionDataSource "LabServer.database.net" -SourceSqlConnectionUserName "User" -SourceSqlConnectionPassword $sourcePassword -SourceDatabaseName "AdventureWorks" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "SystemAssigned" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "UserAssigned" -AzureBlobUserAssignedIdentity "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MyUserAssignedIdentity" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" -AzureBlobAccountKey "accountKey" .Outputs Microsoft.Azure.PowerShell.Cmdlets.DataMigration.Models.Api20250315Preview.IDatabaseMigrationSqlMi diff --git a/generated/DataMigration/DataMigration.Autorest/generate-info.json b/generated/DataMigration/DataMigration.Autorest/generate-info.json index f013f27bf009..ebcf7b26accf 100644 --- a/generated/DataMigration/DataMigration.Autorest/generate-info.json +++ b/generated/DataMigration/DataMigration.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "1051dcfe-079d-4e3d-8a48-42fe1e5ad7f5" + "generate_Id": "3d863b05-0047-489c-b7f2-6b7dfd14dd0a" } diff --git a/generated/DataMigration/DataMigration.Autorest/internal/New-AzDataMigrationToSqlManagedInstance.ps1 b/generated/DataMigration/DataMigration.Autorest/internal/New-AzDataMigrationToSqlManagedInstance.ps1 index bf1073629346..6e7b85e6518e 100644 --- a/generated/DataMigration/DataMigration.Autorest/internal/New-AzDataMigrationToSqlManagedInstance.ps1 +++ b/generated/DataMigration/DataMigration.Autorest/internal/New-AzDataMigrationToSqlManagedInstance.ps1 @@ -23,6 +23,12 @@ Create a new database migration to a given SQL Managed Instance. $sourcePassword = ConvertTo-SecureString -String $password -AsPlainText -Force $filesharePassword = ConvertTo-SecureString -String $password -AsPlainText -Force New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -StorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -StorageAccountKey "aaaaacccccoouunntkkkkeeeyyy" -FileSharePath "\\filesharepath.com\SharedBackup\MyBackUps" -FileShareUsername "filesharepath\User" -FileSharePassword $filesharePassword -SourceSqlConnectionAuthentication "SqlAuthentication" -SourceSqlConnectionDataSource "LabServer.database.net" -SourceSqlConnectionUserName "User" -SourceSqlConnectionPassword $sourcePassword -SourceDatabaseName "AdventureWorks" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "SystemAssigned" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "UserAssigned" -AzureBlobUserAssignedIdentity "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MyUserAssignedIdentity" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" -AzureBlobAccountKey "accountKey" .Outputs Microsoft.Azure.PowerShell.Cmdlets.DataMigration.Models.Api20250315Preview.IDatabaseMigrationSqlMi diff --git a/generated/DataMigration/DataMigration.Autorest/internal/ProxyCmdletDefinitions.ps1 b/generated/DataMigration/DataMigration.Autorest/internal/ProxyCmdletDefinitions.ps1 index 951ca109c1ea..d5f3735fcbe3 100644 --- a/generated/DataMigration/DataMigration.Autorest/internal/ProxyCmdletDefinitions.ps1 +++ b/generated/DataMigration/DataMigration.Autorest/internal/ProxyCmdletDefinitions.ps1 @@ -139,6 +139,12 @@ Create a new database migration to a given SQL Managed Instance. $sourcePassword = ConvertTo-SecureString -String $password -AsPlainText -Force $filesharePassword = ConvertTo-SecureString -String $password -AsPlainText -Force New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -StorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -StorageAccountKey "aaaaacccccoouunntkkkkeeeyyy" -FileSharePath "\\filesharepath.com\SharedBackup\MyBackUps" -FileShareUsername "filesharepath\User" -FileSharePassword $filesharePassword -SourceSqlConnectionAuthentication "SqlAuthentication" -SourceSqlConnectionDataSource "LabServer.database.net" -SourceSqlConnectionUserName "User" -SourceSqlConnectionPassword $sourcePassword -SourceDatabaseName "AdventureWorks" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "SystemAssigned" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobAuthType "ManagedIdentity" -AzureBlobIdentityType "UserAssigned" -AzureBlobUserAssignedIdentity "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MyUserAssignedIdentity" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" +.Example +New-AzDataMigrationToSqlManagedInstance -ResourceGroupName "MyResourceGroup" -ManagedInstanceName "MyManagedInstance" -TargetDbName "MyDb" -Kind "SqlMI" -Scope "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Sql/managedInstances/MyManagedInstance" -MigrationService "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyRG/providers/Microsoft.DataMigration/SqlMigrationServices/MySqlMigrationService" -AzureBlobStorageAccountResourceId "/subscriptions/0000-1111-2222-3333-4444/resourceGroups/MyResourceGroup/providers/Microsoft.Storage/storageAccounts/MyStorageAccount" -AzureBlobContainerName "container" -AzureBlobAccountKey "accountKey" .Outputs Microsoft.Azure.PowerShell.Cmdlets.DataMigration.Models.Api20250315Preview.IDatabaseMigrationSqlMi From ea860bc71c5373b38e55484997f4e5840a1e2ea8 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 26 May 2025 22:43:00 -0400 Subject: [PATCH 06/14] Default VM size update breaking change message (#27763) Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> --- src/Compute/Compute/ChangeLog.md | 1 + .../VirtualMachineScaleSetCreateOrUpdateMethod.cs | 1 + .../Compute/VirtualMachine/Operation/NewAzureVMCommand.cs | 1 + 3 files changed, 3 insertions(+) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 4f72866e676f..320ee4b48320 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,7 @@ --> ## Upcoming Release +* Added breaking change message for `New-AzVM` and `New-AzVmss` cmdlets. ## Version 10.0.0 * Added new properties `Architecture`, `HyperVGeneration`, and `ImageDeprecationStatus` to be returned in `Get-AzVMImage` ListVMImage parameter set. diff --git a/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs index 8ec6334a5b03..e7fb3944b98b 100644 --- a/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs @@ -40,6 +40,7 @@ namespace Microsoft.Azure.Commands.Compute.Automation { + [GenericBreakingChangeWithVersion("In the next breaking change period (Nov 2025), the default VM size will change from 'Standard_Ds1_v2' to 'Standard_D2s_v5'.", "15.0.0", "11.0.0")] [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Vmss", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] [OutputType(typeof(PSVirtualMachineScaleSet))] public partial class NewAzureRmVmss : ComputeAutomationBaseCmdlet diff --git a/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs b/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs index 605751e477b8..05549c9c050b 100644 --- a/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs +++ b/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs @@ -59,6 +59,7 @@ namespace Microsoft.Azure.Commands.Compute { + [GenericBreakingChangeWithVersion("The default VM size will change from 'Standard_D2s_v3' to 'Standard_D2s_v5'.", "15.0.0", "11.0.0", "Nov 2025")] [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VM", SupportsShouldProcess = true, DefaultParameterSetName = "SimpleParameterSet")] [OutputType(typeof(PSAzureOperationResponse), typeof(PSVirtualMachine))] public class NewAzureVMCommand : VirtualMachineBaseCmdlet From 76fe848b7799f112911f4ed4a5feb2b44c74a38c Mon Sep 17 00:00:00 2001 From: Jin Lei <54836179+msJinLei@users.noreply.github.com> Date: Tue, 27 May 2025 10:53:31 +0800 Subject: [PATCH 07/14] Add Code Owners to the Module Folders (#27848) --- .github/CODEOWNERS | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8fa980d86e23..55da726030a7 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,12 +1,12 @@ # @wyunchi-ms @dolauli @isra-fel are from the Azure PowerShell team. Adding them ensures they can merge the PR for those modules. # To make sure Network PRs go to the right branch, e.g. network-april -/src/Compute/ @EdwinBernal1 @grizzlytheodore @ntangy @sandido @wyunchi-ms @dolauli @isra-fel -/src/PolicyInsights/ @pilor @wyunchi-ms @dolauli @isra-fel -/src/Batch/ @wiboris @dpwatrous @wyunchi-ms @dolauli @isra-fel +/src/Compute/ @EdwinBernal1 @grizzlytheodore @ntangy @sandido @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi @msJinLei +/src/PolicyInsights/ @pilor @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi @msJinLei +/src/Batch/ @wiboris @dpwatrous @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi @msJinLei # Make sure Device Registry team gets notified of any DeviceRegistry PRs: # PRLabel: %Device Registry -/src/DeviceRegistry/ @marcodalessandro @rohankhandelwal @riteshrao @davidemontanari @wyunchi-ms @dolauli @isra-fel +/src/DeviceRegistry/ @marcodalessandro @rohankhandelwal @riteshrao @davidemontanari @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi @msJinLei # Make sure changes to .github folder go through our team's double check /.github/ @wyunchi-ms @dolauli @isra-fel From 2cc7017937f16ea56aa3e29dd15e573baf71a5f1 Mon Sep 17 00:00:00 2001 From: Azure PowerShell <65331932+azure-powershell-bot@users.noreply.github.com> Date: Tue, 27 May 2025 13:12:18 +1000 Subject: [PATCH 08/14] [skip ci] Archive e1357051271e9357c4abebca22a258a30e789d70 (#27849) --- .../SelfHelp.Autorest/Az.SelfHelp.csproj | 2 +- .../Az.SelfHelp.format.ps1xml | 898 ++- .../SelfHelp.Autorest/Az.SelfHelp.psd1 | 3 +- .../Properties/AssemblyInfo.cs | 30 +- .../SelfHelp.Autorest/check-dependencies.ps1 | 6 +- .../exports/Get-AzSelfHelpDiagnostic.ps1 | 17 +- .../Get-AzSelfHelpDiscoverySolution.ps1 | 16 +- .../Get-AzSelfHelpSimplifiedSolution.ps1 | 17 +- .../exports/Get-AzSelfHelpSolution.ps1 | 17 +- .../Get-AzSelfHelpSolutionSelfHelp.ps1 | 17 +- .../exports/Get-AzSelfHelpTroubleshooter.ps1 | 21 +- ...Invoke-AzSelfHelpCheckNameAvailability.ps1 | 63 +- ...nvoke-AzSelfHelpContinueTroubleshooter.ps1 | 49 +- ...pDiscoverySolutionNlpSubscriptionScope.ps1 | 71 +- ...elfHelpDiscoverySolutionNlpTenantScope.ps1 | 37 +- .../Invoke-AzSelfHelpWarmSolutionUp.ps1 | 40 +- .../exports/New-AzSelfHelpDiagnostic.ps1 | 72 +- .../New-AzSelfHelpSimplifiedSolution.ps1 | 73 +- .../exports/New-AzSelfHelpSolution.ps1 | 74 +- .../exports/New-AzSelfHelpTroubleshooter.ps1 | 73 +- .../exports/ProxyCmdletDefinitions.ps1 | 739 ++- .../Restart-AzSelfHelpTroubleshooter.ps1 | 17 +- .../exports/Stop-AzSelfHelpTroubleshooter.ps1 | 13 +- .../exports/Update-AzSelfHelpSolution.ps1 | 52 +- .../SelfHelp.Autorest/generate-info.json | 2 +- .../SelfHelp.Autorest/generated/Module.cs | 27 +- .../generated/api/Models/Any.PowerShell.cs | 4 +- .../generated/api/Models/Any.cs | 6 +- .../generated/api/Models/Any.json.cs | 2 +- .../DiagnosticResource.PowerShell.cs | 284 - .../Api20240301Preview/DiagnosticResource.cs | 214 - .../SimplifiedSolutionsResource.PowerShell.cs | 294 - .../SolutionMetadataResource.cs | 136 - .../SolutionNlpMetadataResource.PowerShell.cs | 294 - .../SolutionPatchRequestBody.PowerShell.cs | 278 - .../SolutionPatchRequestBody.cs | 254 - .../SolutionResource.PowerShell.cs | 364 -- .../Api20240301Preview/SolutionResource.cs | 360 -- .../SolutionResourceProperties.PowerShell.cs | 270 - .../SolutionResourceProperties.cs | 270 - .../SolutionResourceSelfHelp.PowerShell.cs | 310 - .../SolutionResourceSelfHelp.cs | 253 - .../Api20240301Preview/Step.PowerShell.cs | 324 - .../TroubleshooterResource.cs | 188 - .../api/Models/Api40/ProxyResource.cs | 112 - .../AutomatedCheckResult.PowerShell.cs | 38 +- .../AutomatedCheckResult.TypeConverter.cs | 6 +- .../AutomatedCheckResult.cs | 30 +- .../AutomatedCheckResult.json.cs | 16 +- ...CheckNameAvailabilityRequest.PowerShell.cs | 28 +- ...ckNameAvailabilityRequest.TypeConverter.cs | 6 +- .../CheckNameAvailabilityRequest.cs | 12 +- .../CheckNameAvailabilityRequest.json.cs | 12 +- ...heckNameAvailabilityResponse.PowerShell.cs | 34 +- ...kNameAvailabilityResponse.TypeConverter.cs | 6 +- .../CheckNameAvailabilityResponse.cs | 15 +- .../CheckNameAvailabilityResponse.json.cs | 14 +- .../ClassificationService.PowerShell.cs | 34 +- .../ClassificationService.TypeConverter.cs | 6 +- .../ClassificationService.cs | 27 +- .../ClassificationService.json.cs | 18 +- .../ContinueRequestBody.PowerShell.cs | 30 +- .../ContinueRequestBody.TypeConverter.cs | 6 +- .../ContinueRequestBody.cs | 22 +- .../ContinueRequestBody.json.cs | 12 +- .../Diagnostic.PowerShell.cs | 52 +- .../Diagnostic.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/Diagnostic.cs | 77 +- .../Diagnostic.json.cs | 18 +- .../DiagnosticInvocation.PowerShell.cs | 30 +- .../DiagnosticInvocation.TypeConverter.cs | 6 +- .../DiagnosticInvocation.cs | 22 +- .../DiagnosticInvocation.json.cs | 12 +- ...vocationAdditionalParameters.PowerShell.cs | 20 +- ...ationAdditionalParameters.TypeConverter.cs | 6 +- ...iagnosticInvocationAdditionalParameters.cs | 6 +- ...vocationAdditionalParameters.dictionary.cs | 4 +- ...sticInvocationAdditionalParameters.json.cs | 8 +- .../Models/DiagnosticResource.PowerShell.cs | 284 + .../DiagnosticResource.TypeConverter.cs | 6 +- .../api/Models/DiagnosticResource.cs | 249 + .../DiagnosticResource.json.cs | 14 +- ...DiagnosticResourceProperties.PowerShell.cs | 42 +- ...gnosticResourceProperties.TypeConverter.cs | 6 +- .../DiagnosticResourceProperties.cs | 69 +- .../DiagnosticResourceProperties.json.cs | 24 +- ...cePropertiesGlobalParameters.PowerShell.cs | 20 +- ...ropertiesGlobalParameters.TypeConverter.cs | 6 +- ...osticResourcePropertiesGlobalParameters.cs | 6 +- ...cePropertiesGlobalParameters.dictionary.cs | 4 +- ...ResourcePropertiesGlobalParameters.json.cs | 8 +- .../DiscoveryNlpRequest.PowerShell.cs | 38 +- .../DiscoveryNlpRequest.TypeConverter.cs | 6 +- .../DiscoveryNlpRequest.cs | 18 +- .../DiscoveryNlpRequest.json.cs | 16 +- .../DiscoveryNlpResponse.PowerShell.cs | 26 +- .../DiscoveryNlpResponse.TypeConverter.cs | 6 +- .../DiscoveryNlpResponse.cs | 19 +- .../DiscoveryNlpResponse.json.cs | 10 +- .../DiscoveryResponse.PowerShell.cs | 28 +- .../DiscoveryResponse.TypeConverter.cs | 6 +- .../DiscoveryResponse.cs | 22 +- .../DiscoveryResponse.json.cs | 12 +- .../Error.PowerShell.cs | 36 +- .../Error.TypeConverter.cs | 6 +- .../Models/{Api20240301Preview => }/Error.cs | 34 +- .../{Api20240301Preview => }/Error.json.cs | 24 +- .../ErrorAdditionalInfo.PowerShell.cs | 28 +- .../ErrorAdditionalInfo.TypeConverter.cs | 6 +- .../Models/{Api40 => }/ErrorAdditionalInfo.cs | 16 +- .../{Api40 => }/ErrorAdditionalInfo.json.cs | 16 +- .../{Api40 => }/ErrorDetail.PowerShell.cs | 40 +- .../{Api40 => }/ErrorDetail.TypeConverter.cs | 6 +- .../api/Models/{Api40 => }/ErrorDetail.cs | 51 +- .../Models/{Api40 => }/ErrorDetail.json.cs | 30 +- .../{Api40 => }/ErrorResponse.PowerShell.cs | 44 +- .../ErrorResponse.TypeConverter.cs | 6 +- .../api/Models/{Api40 => }/ErrorResponse.cs | 61 +- .../Models/{Api40 => }/ErrorResponse.json.cs | 10 +- .../Filter.PowerShell.cs | 32 +- .../Filter.TypeConverter.cs | 6 +- .../Models/{Api20240301Preview => }/Filter.cs | 15 +- .../{Api20240301Preview => }/Filter.json.cs | 16 +- .../FilterGroup.PowerShell.cs | 24 +- .../FilterGroup.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/FilterGroup.cs | 19 +- .../FilterGroup.json.cs | 12 +- .../Insight.PowerShell.cs | 36 +- .../Insight.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/Insight.cs | 30 +- .../{Api20240301Preview => }/Insight.json.cs | 18 +- .../MetricsBasedChart.PowerShell.cs | 48 +- .../MetricsBasedChart.TypeConverter.cs | 6 +- .../MetricsBasedChart.cs | 52 +- .../MetricsBasedChart.json.cs | 20 +- .../NlpSolutions.PowerShell.cs | 44 +- .../NlpSolutions.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/NlpSolutions.cs | 44 +- .../NlpSolutions.json.cs | 20 +- .../{Api40 => }/Operation.PowerShell.cs | 56 +- .../{Api40 => }/Operation.TypeConverter.cs | 6 +- .../api/Models/{Api40 => }/Operation.cs | 86 +- .../api/Models/{Api40 => }/Operation.json.cs | 28 +- .../OperationDisplay.PowerShell.cs | 36 +- .../OperationDisplay.TypeConverter.cs | 6 +- .../Models/{Api40 => }/OperationDisplay.cs | 26 +- .../{Api40 => }/OperationDisplay.json.cs | 24 +- .../OperationListResult.PowerShell.cs | 28 +- .../OperationListResult.TypeConverter.cs | 6 +- .../Models/{Api40 => }/OperationListResult.cs | 26 +- .../{Api40 => }/OperationListResult.json.cs | 16 +- .../{Api40 => }/ProxyResource.PowerShell.cs | 60 +- .../ProxyResource.TypeConverter.cs | 6 +- .../generated/api/Models/ProxyResource.cs | 130 + .../Models/{Api40 => }/ProxyResource.json.cs | 10 +- .../ReplacementMaps.PowerShell.cs | 44 +- .../ReplacementMaps.TypeConverter.cs | 6 +- .../ReplacementMaps.cs | 84 +- .../ReplacementMaps.json.cs | 20 +- .../ReplacementMapsSelfHelp.PowerShell.cs | 34 +- .../ReplacementMapsSelfHelp.TypeConverter.cs | 6 +- .../ReplacementMapsSelfHelp.cs | 45 +- .../ReplacementMapsSelfHelp.json.cs | 14 +- .../Models/{Api40 => }/Resource.PowerShell.cs | 60 +- .../{Api40 => }/Resource.TypeConverter.cs | 6 +- .../api/Models/{Api40 => }/Resource.cs | 113 +- .../api/Models/{Api40 => }/Resource.json.cs | 26 +- .../ResponseOption.PowerShell.cs | 28 +- .../ResponseOption.TypeConverter.cs | 6 +- .../ResponseOption.cs | 12 +- .../ResponseOption.json.cs | 12 +- ...ResponseValidationProperties.PowerShell.cs | 42 +- ...ponseValidationProperties.TypeConverter.cs | 6 +- .../ResponseValidationProperties.cs | 33 +- .../ResponseValidationProperties.json.cs | 18 +- ...estartTroubleshooterResponse.PowerShell.cs | 30 +- ...artTroubleshooterResponse.TypeConverter.cs | 6 +- .../RestartTroubleshooterResponse.cs | 16 +- .../RestartTroubleshooterResponse.json.cs | 12 +- .../SearchResult.PowerShell.cs | 52 +- .../SearchResult.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/SearchResult.cs | 54 +- .../SearchResult.json.cs | 24 +- .../Section.PowerShell.cs | 56 +- .../Section.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/Section.cs | 86 +- .../{Api20240301Preview => }/Section.json.cs | 16 +- .../SectionSelfHelp.PowerShell.cs | 44 +- .../SectionSelfHelp.TypeConverter.cs | 6 +- .../SectionSelfHelp.cs | 53 +- .../SectionSelfHelp.json.cs | 14 +- .../generated/api/Models/SelfHelpIdentity.cs | 24 + .../api/Models/SelfHelpIdentity.json.cs | 16 +- .../SimplifiedSolutionsResource.PowerShell.cs | 292 + ...mplifiedSolutionsResource.TypeConverter.cs | 6 +- .../SimplifiedSolutionsResource.cs | 146 +- .../SimplifiedSolutionsResource.json.cs | 14 +- ...dSolutionsResourceProperties.PowerShell.cs | 46 +- ...lutionsResourceProperties.TypeConverter.cs | 6 +- .../SimplifiedSolutionsResourceProperties.cs | 64 +- ...plifiedSolutionsResourceProperties.json.cs | 28 +- ...nsResourcePropertiesAppendix.PowerShell.cs | 20 +- ...esourcePropertiesAppendix.TypeConverter.cs | 6 +- ...fiedSolutionsResourcePropertiesAppendix.cs | 6 +- ...nsResourcePropertiesAppendix.dictionary.cs | 4 +- ...olutionsResourcePropertiesAppendix.json.cs | 8 +- ...ResourcePropertiesParameters.PowerShell.cs | 20 +- ...ourcePropertiesParameters.TypeConverter.cs | 6 +- ...edSolutionsResourcePropertiesParameters.cs | 6 +- ...ResourcePropertiesParameters.dictionary.cs | 4 +- ...utionsResourcePropertiesParameters.json.cs | 8 +- .../SolutionMetadataProperties.PowerShell.cs | 38 +- ...olutionMetadataProperties.TypeConverter.cs | 6 +- .../SolutionMetadataProperties.cs | 44 +- .../SolutionMetadataProperties.json.cs | 22 +- .../SolutionMetadataResource.PowerShell.cs | 70 +- .../SolutionMetadataResource.TypeConverter.cs | 6 +- .../api/Models/SolutionMetadataResource.cs | 157 + .../SolutionMetadataResource.json.cs | 14 +- .../SolutionNlpMetadataResource.PowerShell.cs | 292 + ...lutionNlpMetadataResource.TypeConverter.cs | 6 +- .../SolutionNlpMetadataResource.cs | 118 +- .../SolutionNlpMetadataResource.json.cs | 14 +- .../SolutionPatchRequestBody.PowerShell.cs | 276 + .../SolutionPatchRequestBody.TypeConverter.cs | 6 +- .../api/Models/SolutionPatchRequestBody.cs | 313 + .../SolutionPatchRequestBody.json.cs | 10 +- .../api/Models/SolutionResource.PowerShell.cs | 364 ++ .../SolutionResource.TypeConverter.cs | 6 +- .../generated/api/Models/SolutionResource.cs | 440 ++ .../SolutionResource.json.cs | 14 +- .../SolutionResourceProperties.PowerShell.cs | 268 + ...olutionResourceProperties.TypeConverter.cs | 6 +- .../api/Models/SolutionResourceProperties.cs | 329 + .../SolutionResourceProperties.json.cs | 36 +- ...ResourcePropertiesParameters.PowerShell.cs | 22 +- ...ourcePropertiesParameters.TypeConverter.cs | 6 +- .../SolutionResourcePropertiesParameters.cs | 6 +- ...ResourcePropertiesParameters.dictionary.cs | 4 +- ...lutionResourcePropertiesParameters.json.cs | 8 +- .../SolutionResourceSelfHelp.PowerShell.cs | 308 + .../SolutionResourceSelfHelp.TypeConverter.cs | 6 +- .../api/Models/SolutionResourceSelfHelp.cs | 301 + .../SolutionResourceSelfHelp.json.cs | 14 +- .../SolutionWarmUpRequestBody.PowerShell.cs | 26 +- ...SolutionWarmUpRequestBody.TypeConverter.cs | 6 +- .../SolutionWarmUpRequestBody.cs | 19 +- .../SolutionWarmUpRequestBody.json.cs | 10 +- ...nWarmUpRequestBodyParameters.PowerShell.cs | 22 +- ...rmUpRequestBodyParameters.TypeConverter.cs | 6 +- .../SolutionWarmUpRequestBodyParameters.cs | 6 +- ...nWarmUpRequestBodyParameters.dictionary.cs | 4 +- ...olutionWarmUpRequestBodyParameters.json.cs | 8 +- .../Solutions.PowerShell.cs | 24 +- .../Solutions.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/Solutions.cs | 19 +- .../Solutions.json.cs | 12 +- .../SolutionsDiagnostic.PowerShell.cs | 50 +- .../SolutionsDiagnostic.TypeConverter.cs | 6 +- .../SolutionsDiagnostic.cs | 57 +- .../SolutionsDiagnostic.json.cs | 22 +- ...nsResourcePropertiesSelfHelp.PowerShell.cs | 54 +- ...esourcePropertiesSelfHelp.TypeConverter.cs | 6 +- .../SolutionsResourcePropertiesSelfHelp.cs | 92 +- ...olutionsResourcePropertiesSelfHelp.json.cs | 28 +- .../SolutionsTroubleshooters.PowerShell.cs | 34 +- .../SolutionsTroubleshooters.TypeConverter.cs | 6 +- .../SolutionsTroubleshooters.cs | 15 +- .../SolutionsTroubleshooters.json.cs | 14 +- .../generated/api/Models/Step.PowerShell.cs | 324 + .../Step.TypeConverter.cs | 6 +- .../Models/{Api20240301Preview => }/Step.cs | 207 +- .../{Api20240301Preview => }/Step.json.cs | 36 +- .../StepInput.PowerShell.cs | 80 +- .../StepInput.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/StepInput.cs | 108 +- .../StepInput.json.cs | 30 +- .../{Api40 => }/SystemData.PowerShell.cs | 44 +- .../{Api40 => }/SystemData.TypeConverter.cs | 6 +- .../api/Models/{Api40 => }/SystemData.cs | 48 +- .../api/Models/{Api40 => }/SystemData.json.cs | 22 +- .../TriggerCriterion.PowerShell.cs | 28 +- .../TriggerCriterion.TypeConverter.cs | 6 +- .../TriggerCriterion.cs | 24 +- .../TriggerCriterion.json.cs | 12 +- ...bleshooterInstanceProperties.PowerShell.cs | 38 +- ...shooterInstanceProperties.TypeConverter.cs | 6 +- .../TroubleshooterInstanceProperties.cs | 54 +- .../TroubleshooterInstanceProperties.json.cs | 20 +- ...InstancePropertiesParameters.PowerShell.cs | 20 +- ...tancePropertiesParameters.TypeConverter.cs | 6 +- ...ubleshooterInstancePropertiesParameters.cs | 6 +- ...InstancePropertiesParameters.dictionary.cs | 4 +- ...hooterInstancePropertiesParameters.json.cs | 8 +- .../TroubleshooterResource.PowerShell.cs | 82 +- .../TroubleshooterResource.TypeConverter.cs | 6 +- .../api/Models/TroubleshooterResource.cs | 220 + .../TroubleshooterResource.json.cs | 14 +- .../TroubleshooterResponse.PowerShell.cs | 34 +- .../TroubleshooterResponse.TypeConverter.cs | 6 +- .../TroubleshooterResponse.cs | 27 +- .../TroubleshooterResponse.json.cs | 14 +- ...hootersContinueNoContentResponseHeaders.cs | 3 + ...ubleshootersEndNoContentResponseHeaders.cs | 3 + .../Video.PowerShell.cs | 32 +- .../Video.TypeConverter.cs | 6 +- .../Models/{Api20240301Preview => }/Video.cs | 22 +- .../{Api20240301Preview => }/Video.json.cs | 14 +- .../VideoGroup.PowerShell.cs | 28 +- .../VideoGroup.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/VideoGroup.cs | 22 +- .../VideoGroup.json.cs | 14 +- .../VideoGroupVideo.PowerShell.cs | 28 +- .../VideoGroupVideo.TypeConverter.cs | 6 +- .../VideoGroupVideo.cs | 12 +- .../VideoGroupVideo.json.cs | 12 +- .../WebResult.PowerShell.cs | 28 +- .../WebResult.TypeConverter.cs | 6 +- .../{Api20240301Preview => }/WebResult.cs | 22 +- .../WebResult.json.cs | 14 +- .../generated/api/SelfHelp.cs | 5700 ++++++++++++++--- .../api/Support/ActionType.Completer.cs | 37 - .../api/Support/ActionType.TypeConverter.cs | 61 - .../generated/api/Support/ActionType.cs | 98 - .../api/Support/AggregationType.Completer.cs | 51 - .../Support/AggregationType.TypeConverter.cs | 59 - .../generated/api/Support/AggregationType.cs | 104 - .../AutomatedCheckResultType.Completer.cs | 47 - .../AutomatedCheckResultType.TypeConverter.cs | 59 - .../api/Support/AutomatedCheckResultType.cs | 102 - .../api/Support/Confidence.Completer.cs | 43 - .../api/Support/Confidence.TypeConverter.cs | 59 - .../generated/api/Support/Confidence.cs | 100 - .../api/Support/CreatedByType.Completer.cs | 47 - .../Support/CreatedByType.TypeConverter.cs | 59 - .../generated/api/Support/CreatedByType.cs | 102 - .../DiagnosticProvisioningState.Completer.cs | 51 - ...agnosticProvisioningState.TypeConverter.cs | 59 - .../Support/DiagnosticProvisioningState.cs | 113 - .../api/Support/ExecutionStatus.Completer.cs | 47 - .../Support/ExecutionStatus.TypeConverter.cs | 59 - .../generated/api/Support/ExecutionStatus.cs | 106 - .../api/Support/ImportanceLevel.Completer.cs | 43 - .../Support/ImportanceLevel.TypeConverter.cs | 59 - .../generated/api/Support/ImportanceLevel.cs | 103 - .../generated/api/Support/Name.Completer.cs | 43 - .../api/Support/Name.TypeConverter.cs | 59 - .../generated/api/Support/Name.cs | 100 - .../generated/api/Support/Origin.Completer.cs | 46 - .../api/Support/Origin.TypeConverter.cs | 62 - .../generated/api/Support/Origin.cs | 103 - .../Support/QuestionContentType.Completer.cs | 43 - .../QuestionContentType.TypeConverter.cs | 59 - .../api/Support/QuestionContentType.cs | 100 - .../api/Support/QuestionType.Completer.cs | 55 - .../api/Support/QuestionType.TypeConverter.cs | 59 - .../generated/api/Support/QuestionType.cs | 112 - .../api/Support/ResultType.Completer.cs | 39 - .../api/Support/ResultType.TypeConverter.cs | 59 - .../generated/api/Support/ResultType.cs | 98 - .../SolutionProvisioningState.Completer.cs | 51 - ...SolutionProvisioningState.TypeConverter.cs | 59 - .../api/Support/SolutionProvisioningState.cs | 109 - .../api/Support/SolutionType.Completer.cs | 47 - .../api/Support/SolutionType.TypeConverter.cs | 59 - .../generated/api/Support/SolutionType.cs | 106 - .../generated/api/Support/Status.Completer.cs | 51 - .../api/Support/Status.TypeConverter.cs | 59 - .../generated/api/Support/Status.cs | 109 - ...oubleshooterProvisioningState.Completer.cs | 51 - ...eshooterProvisioningState.TypeConverter.cs | 59 - .../TroubleshooterProvisioningState.cs | 110 - .../generated/api/Support/Type.Completer.cs | 51 - .../api/Support/Type.TypeConverter.cs | 59 - .../generated/api/Support/Type.cs | 104 - .../api/Support/ValidationScope.Completer.cs | 51 - .../Support/ValidationScope.TypeConverter.cs | 59 - .../generated/api/Support/ValidationScope.cs | 104 - .../cmdlets/GetAzSelfHelpDiagnostic_Get.cs | 109 +- .../GetAzSelfHelpDiagnostic_GetViaIdentity.cs | 105 +- .../GetAzSelfHelpDiscoverySolution_List.cs | 116 +- .../cmdlets/GetAzSelfHelpOperation_List.cs | 112 +- .../GetAzSelfHelpSimplifiedSolution_Get.cs | 109 +- ...lfHelpSimplifiedSolution_GetViaIdentity.cs | 105 +- .../GetAzSelfHelpSolutionSelfHelp_Get.cs | 109 +- ...SelfHelpSolutionSelfHelp_GetViaIdentity.cs | 105 +- .../cmdlets/GetAzSelfHelpSolution_Get.cs | 109 +- .../GetAzSelfHelpSolution_GetViaIdentity.cs | 105 +- .../GetAzSelfHelpTroubleshooter_Get.cs | 113 +- ...AzSelfHelpTroubleshooter_GetViaIdentity.cs | 109 +- ...okeAzSelfHelpCheckNameAvailability_Post.cs | 116 +- ...fHelpCheckNameAvailability_PostExpanded.cs | 111 +- ...ckNameAvailability_PostViaJsonFilePath.cs} | 180 +- ...heckNameAvailability_PostViaJsonString.cs} | 182 +- ...SelfHelpContinueTroubleshooter_Continue.cs | 88 +- ...ContinueTroubleshooter_ContinueExpanded.cs | 87 +- ...tinueTroubleshooter_ContinueViaIdentity.cs | 88 +- ...ubleshooter_ContinueViaIdentityExpanded.cs | 87 +- ...eTroubleshooter_ContinueViaJsonFilePath.cs | 502 ++ ...nueTroubleshooter_ContinueViaJsonString.cs | 499 ++ ...coverySolutionNlpSubscriptionScope_Post.cs | 123 +- ...lutionNlpSubscriptionScope_PostExpanded.cs | 124 +- ...lpSubscriptionScope_PostViaJsonFilePath.cs | 503 ++ ...NlpSubscriptionScope_PostViaJsonString.cs} | 202 +- ...elpDiscoverySolutionNlpTenantScope_Post.cs | 120 +- ...verySolutionNlpTenantScope_PostExpanded.cs | 121 +- ...utionNlpTenantScope_PostViaJsonFilePath.cs | 484 ++ ...lutionNlpTenantScope_PostViaJsonString.cs} | 174 +- .../InvokeAzSelfHelpWarmSolutionUp_Warm.cs | 84 +- ...keAzSelfHelpWarmSolutionUp_WarmExpanded.cs | 83 +- ...zSelfHelpWarmSolutionUp_WarmViaIdentity.cs | 84 +- ...pWarmSolutionUp_WarmViaIdentityExpanded.cs | 83 +- ...fHelpWarmSolutionUp_WarmViaJsonFilePath.cs | 495 ++ ...elfHelpWarmSolutionUp_WarmViaJsonString.cs | 493 ++ .../NewAzSelfHelpDiagnostic_CreateExpanded.cs | 143 +- ...elpDiagnostic_CreateViaIdentityExpanded.cs | 599 ++ ...elfHelpDiagnostic_CreateViaJsonFilePath.cs | 594 ++ ...zSelfHelpDiagnostic_CreateViaJsonString.cs | 592 ++ ...lfHelpSimplifiedSolution_CreateExpanded.cs | 139 +- ...ifiedSolution_CreateViaIdentityExpanded.cs | 597 ++ ...implifiedSolution_CreateViaJsonFilePath.cs | 594 ++ ...pSimplifiedSolution_CreateViaJsonString.cs | 592 ++ .../NewAzSelfHelpSolution_CreateExpanded.cs | 143 +- ...fHelpSolution_CreateViaIdentityExpanded.cs | 604 ++ ...zSelfHelpSolution_CreateViaJsonFilePath.cs | 602 ++ ...wAzSelfHelpSolution_CreateViaJsonString.cs | 600 ++ ...AzSelfHelpTroubleshooter_CreateExpanded.cs | 151 +- ...roubleshooter_CreateViaIdentityExpanded.cs | 572 ++ ...elpTroubleshooter_CreateViaJsonFilePath.cs | 569 ++ ...fHelpTroubleshooter_CreateViaJsonString.cs | 567 ++ ...RestartAzSelfHelpTroubleshooter_Restart.cs | 109 +- ...lfHelpTroubleshooter_RestartViaIdentity.cs | 105 +- .../StopAzSelfHelpTroubleshooter_End.cs | 77 +- ...AzSelfHelpTroubleshooter_EndViaIdentity.cs | 73 +- ...UpdateAzSelfHelpSolution_UpdateExpanded.cs | 143 +- ...fHelpSolution_UpdateViaIdentityExpanded.cs | 145 +- ...zSelfHelpSolution_UpdateViaJsonFilePath.cs | 591 ++ ...eAzSelfHelpSolution_UpdateViaJsonString.cs | 589 ++ .../Attributes/ExternalDocsAttribute.cs | 30 + .../PSArgumentCompleterAttribute.cs | 52 + .../BuildTime/Cmdlets/ExportFormatPs1xml.cs | 6 +- .../BuildTime/Cmdlets/ExportModelSurface.cs | 2 +- .../BuildTime/Cmdlets/ExportProxyCmdlet.cs | 4 +- .../runtime/BuildTime/Cmdlets/ExportPsd1.cs | 8 +- .../BuildTime/Cmdlets/ExportTestStub.cs | 211 +- .../runtime/BuildTime/MarkdownRenderer.cs | 2 +- .../BuildTime/Models/PsMarkdownTypes.cs | 43 +- .../BuildTime/Models/PsProxyOutputs.cs | 60 +- .../runtime/BuildTime/Models/PsProxyTypes.cs | 56 +- .../runtime/BuildTime/PsAttributes.cs | 15 + .../runtime/BuildTime/PsExtensions.cs | 7 + .../generated/runtime/BuildTime/PsHelpers.cs | 4 +- .../generated/runtime/Context.cs | 33 + .../generated/runtime/Events.cs | 4 +- .../generated/runtime/ISendAsync.cs | 113 + .../generated/runtime/InfoAttribute.cs | 4 + .../generated/runtime/InputHandler.cs | 22 + .../runtime/Nodes/Collections/XNodeArray.cs | 5 + .../generated/runtime/SerializationMode.cs | 8 +- .../runtime/TypeConverterExtensions.cs | 50 + .../internal/Get-AzSelfHelpOperation.ps1 | 10 +- .../internal/ProxyCmdletDefinitions.ps1 | 10 +- .../SelfHelp.Autorest/resources/README.md | 11 + .../SelfHelp.Autorest/test-module.ps1 | 10 +- 464 files changed, 29964 insertions(+), 13837 deletions(-) delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.PowerShell.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/AutomatedCheckResult.PowerShell.cs (72%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/AutomatedCheckResult.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/AutomatedCheckResult.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/AutomatedCheckResult.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/CheckNameAvailabilityRequest.PowerShell.cs (81%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/CheckNameAvailabilityRequest.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/CheckNameAvailabilityRequest.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/CheckNameAvailabilityRequest.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/CheckNameAvailabilityResponse.PowerShell.cs (74%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/CheckNameAvailabilityResponse.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/CheckNameAvailabilityResponse.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/CheckNameAvailabilityResponse.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ClassificationService.PowerShell.cs (75%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ClassificationService.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ClassificationService.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ClassificationService.json.cs (90%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ContinueRequestBody.PowerShell.cs (75%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ContinueRequestBody.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ContinueRequestBody.cs (68%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ContinueRequestBody.json.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Diagnostic.PowerShell.cs (60%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Diagnostic.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Diagnostic.cs (66%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Diagnostic.json.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocation.PowerShell.cs (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocation.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocation.cs (72%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocation.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocationAdditionalParameters.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocationAdditionalParameters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocationAdditionalParameters.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocationAdditionalParameters.dictionary.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticInvocationAdditionalParameters.json.cs (94%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResource.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResource.json.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourceProperties.PowerShell.cs (60%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourceProperties.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourceProperties.cs (59%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourceProperties.json.cs (84%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourcePropertiesGlobalParameters.cs (81%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiagnosticResourcePropertiesGlobalParameters.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpRequest.PowerShell.cs (72%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpRequest.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpRequest.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpRequest.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpResponse.PowerShell.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpResponse.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpResponse.cs (62%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryNlpResponse.json.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryResponse.PowerShell.cs (75%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryResponse.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryResponse.cs (71%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/DiscoveryResponse.json.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Error.PowerShell.cs (72%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Error.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Error.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Error.json.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorAdditionalInfo.PowerShell.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorAdditionalInfo.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorAdditionalInfo.cs (82%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorAdditionalInfo.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorDetail.PowerShell.cs (68%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorDetail.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorDetail.cs (66%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorDetail.json.cs (84%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorResponse.PowerShell.cs (66%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorResponse.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorResponse.cs (57%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ErrorResponse.json.cs (95%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Filter.PowerShell.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Filter.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Filter.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Filter.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/FilterGroup.PowerShell.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/FilterGroup.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/FilterGroup.cs (63%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/FilterGroup.json.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Insight.PowerShell.cs (74%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Insight.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Insight.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Insight.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/MetricsBasedChart.PowerShell.cs (61%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/MetricsBasedChart.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/MetricsBasedChart.cs (71%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/MetricsBasedChart.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/NlpSolutions.PowerShell.cs (62%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/NlpSolutions.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/NlpSolutions.cs (75%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/NlpSolutions.json.cs (85%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Operation.PowerShell.cs (64%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Operation.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Operation.cs (74%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Operation.json.cs (90%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationDisplay.PowerShell.cs (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationDisplay.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationDisplay.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationDisplay.json.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationListResult.PowerShell.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationListResult.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationListResult.cs (72%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/OperationListResult.json.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ProxyResource.PowerShell.cs (60%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ProxyResource.TypeConverter.cs (97%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/ProxyResource.json.cs (95%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMaps.PowerShell.cs (54%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMaps.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMaps.cs (53%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMaps.json.cs (77%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMapsSelfHelp.PowerShell.cs (65%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMapsSelfHelp.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMapsSelfHelp.cs (59%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ReplacementMapsSelfHelp.json.cs (83%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Resource.PowerShell.cs (60%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Resource.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Resource.cs (61%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/Resource.json.cs (90%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseOption.PowerShell.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseOption.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseOption.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseOption.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseValidationProperties.PowerShell.cs (67%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseValidationProperties.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseValidationProperties.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/ResponseValidationProperties.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/RestartTroubleshooterResponse.PowerShell.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/RestartTroubleshooterResponse.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/RestartTroubleshooterResponse.cs (81%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/RestartTroubleshooterResponse.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SearchResult.PowerShell.cs (64%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SearchResult.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SearchResult.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SearchResult.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Section.PowerShell.cs (51%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Section.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Section.cs (54%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Section.json.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SectionSelfHelp.PowerShell.cs (59%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SectionSelfHelp.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SectionSelfHelp.cs (60%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SectionSelfHelp.json.cs (92%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResource.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResource.cs (50%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResource.json.cs (90%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourceProperties.PowerShell.cs (61%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourceProperties.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourceProperties.cs (65%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourceProperties.json.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesAppendix.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesAppendix.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesParameters.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SimplifiedSolutionsResourcePropertiesParameters.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataProperties.PowerShell.cs (70%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataProperties.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataProperties.cs (69%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataProperties.json.cs (90%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataResource.PowerShell.cs (54%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataResource.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionMetadataResource.json.cs (91%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionNlpMetadataResource.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionNlpMetadataResource.cs (51%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionNlpMetadataResource.json.cs (91%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionPatchRequestBody.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionPatchRequestBody.json.cs (93%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResource.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResource.json.cs (91%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourceProperties.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourceProperties.json.cs (83%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourcePropertiesParameters.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourcePropertiesParameters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourcePropertiesParameters.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourcePropertiesParameters.dictionary.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourcePropertiesParameters.json.cs (94%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourceSelfHelp.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionResourceSelfHelp.json.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBody.PowerShell.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBody.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBody.cs (63%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBody.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBodyParameters.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBodyParameters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBodyParameters.cs (77%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBodyParameters.dictionary.cs (95%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionWarmUpRequestBodyParameters.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Solutions.PowerShell.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Solutions.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Solutions.cs (60%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Solutions.json.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsDiagnostic.PowerShell.cs (62%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsDiagnostic.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsDiagnostic.cs (75%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsDiagnostic.json.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsResourcePropertiesSelfHelp.PowerShell.cs (53%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsResourcePropertiesSelfHelp.cs (56%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsResourcePropertiesSelfHelp.json.cs (86%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsTroubleshooters.PowerShell.cs (75%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsTroubleshooters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsTroubleshooters.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/SolutionsTroubleshooters.json.cs (93%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.PowerShell.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Step.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Step.cs (62%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Step.json.cs (83%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/StepInput.PowerShell.cs (51%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/StepInput.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/StepInput.cs (67%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/StepInput.json.cs (89%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/SystemData.PowerShell.cs (67%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/SystemData.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/SystemData.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api40 => }/SystemData.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TriggerCriterion.PowerShell.cs (79%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TriggerCriterion.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TriggerCriterion.cs (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TriggerCriterion.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstanceProperties.PowerShell.cs (65%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstanceProperties.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstanceProperties.cs (61%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstanceProperties.json.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstancePropertiesParameters.PowerShell.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstancePropertiesParameters.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstancePropertiesParameters.cs (78%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstancePropertiesParameters.dictionary.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterInstancePropertiesParameters.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResource.PowerShell.cs (50%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResource.TypeConverter.cs (96%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResource.json.cs (91%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResponse.PowerShell.cs (74%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResponse.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResponse.cs (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/TroubleshooterResponse.json.cs (94%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Video.PowerShell.cs (77%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Video.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Video.cs (74%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/Video.json.cs (92%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroup.PowerShell.cs (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroup.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroup.cs (73%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroup.json.cs (88%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroupVideo.PowerShell.cs (80%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroupVideo.TypeConverter.cs (96%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroupVideo.cs (87%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/VideoGroupVideo.json.cs (93%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/WebResult.PowerShell.cs (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/WebResult.TypeConverter.cs (97%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/WebResult.cs (72%) rename generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/{Api20240301Preview => }/WebResult.json.cs (88%) delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.Completer.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.TypeConverter.cs delete mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/{InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity.cs => InvokeAzSelfHelpCheckNameAvailability_PostViaJsonFilePath.cs} (76%) rename generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/{InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded.cs => InvokeAzSelfHelpCheckNameAvailability_PostViaJsonString.cs} (77%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/{InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded.cs => InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString.cs} (77%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath.cs rename generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/{InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity.cs => InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString.cs} (78%) create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaIdentityExpanded.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaIdentityExpanded.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonFilePath.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonString.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/ExternalDocsAttribute.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/PSArgumentCompleterAttribute.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Context.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InputHandler.cs create mode 100644 generated/SelfHelp/SelfHelp.Autorest/resources/README.md diff --git a/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.csproj b/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.csproj index ed4ee919c8cc..0680bbda464a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.csproj +++ b/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.csproj @@ -2,9 +2,9 @@ SelfHelp SelfHelp + SelfHelp.Autorest - diff --git a/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.format.ps1xml b/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.format.ps1xml index 0f63c373e470..ab5b56a899f9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.format.ps1xml +++ b/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.format.ps1xml @@ -2,57 +2,33 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SelfHelpIdentity + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResult - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SelfHelpIdentity + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResult#Multiple - - - - - - - - - - - - - + - + - + - DiagnosticsResourceName - - - Scope - - - SimplifiedSolutionsResourceName - - - SolutionId - - - SolutionResourceName + Result - SubscriptionId + Status - TroubleshooterName + Version @@ -60,21 +36,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersContinueNoContentResponseHeaders + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityRequest - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersContinueNoContentResponseHeaders + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityRequest#Multiple - + - Location + Name @@ -82,21 +58,33 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersEndNoContentResponseHeaders + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityResponse - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersEndNoContentResponseHeaders + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityResponse#Multiple - + + + + + + + - Location + Message + + + NameAvailable + + + Reason @@ -104,21 +92,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.CheckNameAvailabilityRequest + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationService - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.CheckNameAvailabilityRequest + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationService#Multiple - + + + + - Name + DisplayName + + + ServiceId @@ -126,33 +120,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ContinueRequestBody - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ContinueRequestBody#Multiple - - - - - - - + - Code - - - Message - - - Target + StepId @@ -160,39 +142,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Operation + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Diagnostic - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Operation + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Diagnostic#Multiple - - - - - - - + - + - ActionType - - - IsDataAction - - - Name + SolutionId - Origin + Status @@ -200,39 +170,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplay + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocation - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplay + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocation#Multiple - - - - - - - - - - + - Description - - - Operation - - - Provider - - - Resource + SolutionId @@ -240,21 +192,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationListResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParameters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationListResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParameters#Multiple - + - NextLink + Item @@ -262,9 +214,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ProxyResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ProxyResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource#Multiple @@ -289,6 +241,9 @@ + + + @@ -314,27 +269,8 @@ SystemDataLastModifiedByType - - - - - - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource - - - - - - - - - - - Name + ResourceGroupName @@ -342,51 +278,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourceProperties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourceProperties#Multiple - - - - - - - - - - - - - + - + - CreatedAt - - - CreatedBy - - - CreatedByType - - - LastModifiedAt - - - LastModifiedBy + AcceptedAt - LastModifiedByType + ProvisioningState @@ -394,33 +306,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParameters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParameters#Multiple - - - - - - - + - Result - - - Status - - - Version + Item @@ -428,51 +328,20 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.CheckNameAvailabilityResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpRequest - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.CheckNameAvailabilityResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpRequest#Multiple - - - - + - - - - - - - - Message - - - NameAvailable - - - Reason - - - - - - - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationService - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationService - - - - - + - + @@ -482,10 +351,13 @@ - DisplayName + AdditionalContext - ResourceType + IssueSummary + + + ResourceId ServiceId @@ -496,21 +368,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ContinueRequestBody + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryResponse - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ContinueRequestBody + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryResponse#Multiple - + - StepId + NextLink @@ -518,27 +390,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Diagnostic + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Error - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Diagnostic + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Error#Multiple - + - + - SolutionId + Code - Status + Message @@ -546,43 +418,33 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocation + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocation + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail#Multiple - + - - - - - - SolutionId - - - - - - - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParameters - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParameters - - - - + + + + - Item + Code + + + Message + + + Target @@ -590,9 +452,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Filter - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Filter#Multiple @@ -600,25 +462,10 @@ - - - - - - - - - - - - - - - - + - + @@ -628,25 +475,10 @@ Name - SystemDataCreatedAt - - - SystemDataCreatedBy - - - SystemDataCreatedByType - - - SystemDataLastModifiedAt - - - SystemDataLastModifiedBy - - - SystemDataLastModifiedByType + Operator - ResourceGroupName + Value @@ -654,27 +486,33 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Insight - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Insight#Multiple - + - + + + + - AcceptedAt + ImportanceLevel - ProvisioningState + Result + + + Title @@ -682,21 +520,45 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChart - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChart#Multiple - + + + + + + + + + + + + + - Item + AggregationType + + + Name + + + ReplacementKey + + + TimeSpanDuration + + + Title @@ -704,20 +566,20 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpRequest + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutions - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpRequest + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutions#Multiple - + - + - + @@ -727,13 +589,13 @@ - AdditionalContext + ProblemClassificationId - IssueSummary + ProblemDescription - ResourceId + ProblemTitle ServiceId @@ -744,49 +606,39 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Operation - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Operation#Multiple - + - - - - - - NextLink - - - - - - - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Error - - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Error - - - - + - + + + + - Code + ActionType - Message + IsDataAction + + + Name + + + Origin @@ -794,33 +646,39 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Filter + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplay - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Filter + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplay#Multiple - + - + - + + + + - Name + Description - Operator + Operation - Value + Provider + + + Resource @@ -828,33 +686,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Insight + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationListResult - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Insight + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationListResult#Multiple - - - - - - - + - ImportanceLevel - - - Result - - - Title + NextLink @@ -862,45 +708,57 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChart + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChart + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource#Multiple - + - + - + - + - + + + + + + + - AggregationType + Name - Name + SystemDataCreatedAt - ReplacementKey + SystemDataCreatedBy - TimeSpanDuration + SystemDataCreatedByType - Title + SystemDataLastModifiedAt + + + SystemDataLastModifiedBy + + + SystemDataLastModifiedByType @@ -908,39 +766,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutions + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Resource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutions + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Resource#Multiple - - - - - - - - - - + - ProblemClassificationId - - - ProblemDescription - - - ProblemTitle - - - ServiceId + Name @@ -948,9 +788,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseOption + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseOption - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseOption + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseOption#Multiple @@ -976,9 +816,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationProperties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationProperties#Multiple @@ -1022,9 +862,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.RestartTroubleshooterResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.RestartTroubleshooterResponse - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.RestartTroubleshooterResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.RestartTroubleshooterResponse#Multiple @@ -1050,9 +890,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SearchResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SearchResult - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SearchResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SearchResult#Multiple @@ -1114,9 +954,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Section + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Section - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Section + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Section#Multiple @@ -1142,9 +982,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelp + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelp - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelp + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelp#Multiple @@ -1170,9 +1010,67 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SelfHelpIdentity + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SelfHelpIdentity#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DiagnosticsResourceName + + + Scope + + + SimplifiedSolutionsResourceName + + + SolutionId + + + SolutionResourceName + + + SubscriptionId + + + TroubleshooterName + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource#Multiple @@ -1234,9 +1132,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourceProperties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourceProperties#Multiple @@ -1274,9 +1172,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendix + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendix - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendix + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendix#Multiple @@ -1296,9 +1194,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParameters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParameters#Multiple @@ -1318,18 +1216,15 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataProperties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataProperties#Multiple - - - @@ -1343,9 +1238,6 @@ Description - - RequiredInput - SolutionId @@ -1358,9 +1250,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataResource#Multiple @@ -1416,9 +1308,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionNlpMetadataResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionNlpMetadataResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionNlpMetadataResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionNlpMetadataResource#Multiple @@ -1474,9 +1366,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource#Multiple @@ -1544,9 +1436,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties#Multiple @@ -1584,9 +1476,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParameters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParameters#Multiple @@ -1606,9 +1498,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceSelfHelp + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceSelfHelp - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceSelfHelp + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceSelfHelp#Multiple @@ -1670,9 +1562,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnostic + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnostic - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnostic + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnostic#Multiple @@ -1682,9 +1574,6 @@ - - - @@ -1704,9 +1593,6 @@ ReplacementKey - - RequiredParameter - SolutionId @@ -1722,9 +1608,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelp + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelp - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelp + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelp#Multiple @@ -1756,9 +1642,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshooters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshooters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshooters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshooters#Multiple @@ -1790,9 +1676,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParameters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParameters#Multiple @@ -1812,9 +1698,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Step + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Step - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Step + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Step#Multiple @@ -1864,9 +1750,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepInput + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepInput - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepInput + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepInput#Multiple @@ -1928,9 +1814,61 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterion + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemData + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemData#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + CreatedAt + + + CreatedBy + + + CreatedByType + + + LastModifiedAt + + + LastModifiedBy + + + LastModifiedByType + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterion - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterion + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterion#Multiple @@ -1956,9 +1894,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstanceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstanceProperties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstanceProperties + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstanceProperties#Multiple @@ -1984,9 +1922,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParameters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParameters + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParameters#Multiple @@ -2006,9 +1944,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource#Multiple @@ -2070,9 +2008,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResponse - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResponse + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResponse#Multiple @@ -2104,9 +2042,53 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Video + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersContinueNoContentResponseHeaders + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersContinueNoContentResponseHeaders#Multiple + + + + + + + + + + + + Location + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersEndNoContentResponseHeaders + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshootersEndNoContentResponseHeaders#Multiple + + + + + + + + + + + + Location + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Video - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Video + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Video#Multiple @@ -2138,9 +2120,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroup + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroup - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroup + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroup#Multiple @@ -2160,9 +2142,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideo + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideo - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideo + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideo#Multiple @@ -2188,9 +2170,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResult - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResult + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResult#Multiple diff --git a/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.psd1 b/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.psd1 index 5114f71871d7..297dee33d514 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.psd1 +++ b/generated/SelfHelp/SelfHelp.Autorest/Az.SelfHelp.psd1 @@ -11,8 +11,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.SelfHelp.private.dll' FormatsToProcess = './Az.SelfHelp.format.ps1xml' - FunctionsToExport = 'Get-AzSelfHelpDiagnostic', 'Get-AzSelfHelpDiscoverySolution', 'Get-AzSelfHelpSimplifiedSolution', 'Get-AzSelfHelpSolution', 'Get-AzSelfHelpSolutionSelfHelp', 'Get-AzSelfHelpTroubleshooter', 'Invoke-AzSelfHelpCheckNameAvailability', 'Invoke-AzSelfHelpContinueTroubleshooter', 'Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope', 'Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope', 'Invoke-AzSelfHelpWarmSolutionUp', 'New-AzSelfHelpDiagnostic', 'New-AzSelfHelpSimplifiedSolution', 'New-AzSelfHelpSolution', 'New-AzSelfHelpTroubleshooter', 'Restart-AzSelfHelpTroubleshooter', 'Stop-AzSelfHelpTroubleshooter', 'Update-AzSelfHelpSolution', '*' - AliasesToExport = '*' + FunctionsToExport = 'Get-AzSelfHelpDiagnostic', 'Get-AzSelfHelpDiscoverySolution', 'Get-AzSelfHelpSimplifiedSolution', 'Get-AzSelfHelpSolution', 'Get-AzSelfHelpSolutionSelfHelp', 'Get-AzSelfHelpTroubleshooter', 'Invoke-AzSelfHelpCheckNameAvailability', 'Invoke-AzSelfHelpContinueTroubleshooter', 'Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope', 'Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope', 'Invoke-AzSelfHelpWarmSolutionUp', 'New-AzSelfHelpDiagnostic', 'New-AzSelfHelpSimplifiedSolution', 'New-AzSelfHelpSolution', 'New-AzSelfHelpTroubleshooter', 'Restart-AzSelfHelpTroubleshooter', 'Stop-AzSelfHelpTroubleshooter', 'Update-AzSelfHelpSolution' PrivateData = @{ PSData = @{ Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'SelfHelp' diff --git a/generated/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs b/generated/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs index 2b5f2efbee5d..2aaa55258b53 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/Properties/AssemblyInfo.cs @@ -1,28 +1,26 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); +// Copyright (c) Microsoft Corporation. All rights reserved. +// 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, +// 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. -// ---------------------------------------------------------------------------------- +// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +// is regenerated. using System; using System.Reflection; +using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Microsoft Azure Powershell - SelfHelp")] -[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] -[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] -[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] - -[assembly: ComVisible(false)] -[assembly: CLSCompliant(false)] -[assembly: Guid("e1744ee7-2ebf-4e28-aa4b-8e6bce9d10b0")] -[assembly: AssemblyVersion("0.2.1")] -[assembly: AssemblyFileVersion("0.2.1")] +[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] +[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] +[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - SelfHelp")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("0.2.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("0.2.1")] +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] +[assembly: System.CLSCompliantAttribute(false)] diff --git a/generated/SelfHelp/SelfHelp.Autorest/check-dependencies.ps1 b/generated/SelfHelp/SelfHelp.Autorest/check-dependencies.ps1 index c29591c7bfe1..90ca9867ae40 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/check-dependencies.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/check-dependencies.ps1 @@ -12,13 +12,13 @@ # Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code # is regenerated. # ---------------------------------------------------------------------------------- -param([switch]$Isolated, [switch]$Accounts, [switch]$Pester, [switch]$Resources) +param([switch]$NotIsolated, [switch]$Accounts, [switch]$Pester, [switch]$Resources) $ErrorActionPreference = 'Stop' -if(-not $Isolated) { +if(-not $NotIsolated) { Write-Host -ForegroundColor Green 'Creating isolated process...' $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path - & "$pwsh" -NoExit -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + & "$pwsh" -NoExit -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -NotIsolated return } diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiagnostic.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiagnostic.ps1 index e27c94e65f26..6e147bf46149 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiagnostic.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiagnostic.ps1 @@ -25,7 +25,7 @@ Get the diagnostics using the 'diagnosticsResourceName' you chose while creating .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource .Notes COMPLEX PARAMETER PROPERTIES @@ -44,7 +44,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpdiagnostic #> function Get-AzSelfHelpDiagnostic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -64,7 +64,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -123,6 +122,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -152,6 +160,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiscoverySolution.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiscoverySolution.ps1 index 4f4fa428d851..258b64f5d26f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiscoverySolution.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpDiscoverySolution.ps1 @@ -25,12 +25,12 @@ Lists the relevant Azure diagnostics and solutions using [problemClassification Get-AzSelfHelpDiscoverySolution -Filter "ProblemClassificationId eq 'a5db90c3-f147-bce6-83b0-ab5e0aeca1f0'" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource .Link https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpdiscoverysolution #> function Get-AzSelfHelpDiscoverySolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -104,6 +104,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -132,6 +141,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSimplifiedSolution.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSimplifiedSolution.ps1 index 8f70816bb6f1..0d5af46a0f3d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSimplifiedSolution.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSimplifiedSolution.ps1 @@ -27,7 +27,7 @@ Get-AzSelfHelpSimplifiedSolution -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3- .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource .Notes COMPLEX PARAMETER PROPERTIES @@ -46,7 +46,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpsimplifiedsolution #> function Get-AzSelfHelpSimplifiedSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -66,7 +66,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -125,6 +124,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -154,6 +162,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolution.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolution.ps1 index f9c345981870..51f602ba0e54 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolution.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolution.ps1 @@ -25,7 +25,7 @@ Get-AzSelfHelpSolution -ResourceName test-resource234 -Scope /subscriptions/6bd .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource .Notes COMPLEX PARAMETER PROPERTIES @@ -44,7 +44,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpsolution #> function Get-AzSelfHelpSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -64,7 +64,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -123,6 +122,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -152,6 +160,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolutionSelfHelp.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolutionSelfHelp.ps1 index d43058c97c3d..165ecc140c78 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolutionSelfHelp.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpSolutionSelfHelp.ps1 @@ -27,7 +27,7 @@ Get-AzSelfHelpSolutionSelfHelp -SolutionId "apollo-48996ff7-002f-47c1-85b2-df138 .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp .Notes COMPLEX PARAMETER PROPERTIES @@ -46,7 +46,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpsolutionselfhelp #> function Get-AzSelfHelpSolutionSelfHelp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -60,7 +60,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -119,6 +118,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -148,6 +156,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpTroubleshooter.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpTroubleshooter.ps1 index dff25b201e04..e7397a6474fa 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpTroubleshooter.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Get-AzSelfHelpTroubleshooter.ps1 @@ -17,17 +17,17 @@ <# .Synopsis Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. .Description Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. .Example Get-AzSelfHelpTroubleshooter -Scope "/subscriptions/" -Name "02d59989-f8a9-4b69-9919-1ef51df4eff6" .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource .Notes COMPLEX PARAMETER PROPERTIES @@ -46,7 +46,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelptroubleshooter #> function Get-AzSelfHelpTroubleshooter { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -66,7 +66,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -125,6 +124,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -154,6 +162,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpCheckNameAvailability.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpCheckNameAvailability.ps1 index 858cbb1271b1..a262ccfdd55c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpCheckNameAvailability.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpCheckNameAvailability.ps1 @@ -28,11 +28,9 @@ $CHECKNAMEAVAILABILITYREQUEST = [ordered]@{ Invoke-AzSelfHelpCheckNameAvailability -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -CheckNameAvailabilityRequest $CHECKNAMEAVAILABILITYREQUEST .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -41,60 +39,49 @@ To create the parameters described below, construct a hash table containing the CHECKNAMEAVAILABILITYREQUEST : The check availability request body. [Name ]: The name of the resource for which availability needs to be checked. [Type ]: The resource type. - -INPUTOBJECT : Identity Parameter - [DiagnosticsResourceName ]: Unique resource name for insight resources - [Id ]: Resource identity path - [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. - [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - [SolutionResourceName ]: Solution resource Name. - [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. - [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpchecknameavailability #> function Invoke-AzSelfHelpCheckNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse])] [CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Post', Mandatory)] - [Parameter(ParameterSetName='PostExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest] # The check availability request body. - # To construct, see NOTES section for CHECKNAMEAVAILABILITYREQUEST properties and create a hash table. ${CheckNameAvailabilityRequest}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # The name of the resource for which availability needs to be checked. ${Name}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # The resource type. ${Type}, + [Parameter(ParameterSetName='PostViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Post operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='PostViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Post operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -151,6 +138,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -172,8 +168,8 @@ begin { $mapping = @{ Post = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_Post'; PostExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostExpanded'; - PostViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaIdentity'; - PostViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaIdentityExpanded'; + PostViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaJsonFilePath'; + PostViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -182,6 +178,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpContinueTroubleshooter.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpContinueTroubleshooter.ps1 index 6a1093de1e09..32d4e32e5aea 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpContinueTroubleshooter.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpContinueTroubleshooter.ps1 @@ -18,11 +18,11 @@ .Synopsis Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. .Description Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. .Example $continueRequest = [ordered]@{ "StepId" ="15ebac6c-96a1-4a67-ae9d-b06011d232ff" @@ -31,7 +31,7 @@ $continueRequest = [ordered]@{ Invoke-AzSelfHelpContinueTroubleshooter -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -TroubleshooterName "02d59989-f8a9-4b69-9919-1ef51df4eff6" -ContinueRequestBody $continueRequest .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs @@ -42,9 +42,9 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. CONTINUEREQUESTBODY : Troubleshooter ContinueRequest body. - [Response ]: + [Response >]: [QuestionId ]: id of the question. - [QuestionType ]: Type of Question + [QuestionType ]: Type of Question [Response ]: Response key for SingleInput. For Multi-line test/open ended question it is free form text [StepId ]: Unique id of the result. @@ -60,7 +60,7 @@ INPUTOBJECT : Identity Parameter RESPONSE : . [QuestionId ]: id of the question. - [QuestionType ]: Type of Question + [QuestionType ]: Type of Question [Response ]: Response key for SingleInput. For Multi-line test/open ended question it is free form text .Link https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpcontinuetroubleshooter @@ -71,6 +71,8 @@ function Invoke-AzSelfHelpContinueTroubleshooter { param( [Parameter(ParameterSetName='Continue', Mandatory)] [Parameter(ParameterSetName='ContinueExpanded', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read @@ -78,6 +80,8 @@ param( [Parameter(ParameterSetName='Continue', Mandatory)] [Parameter(ParameterSetName='ContinueExpanded', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Troubleshooter resource Name. @@ -88,24 +92,21 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Continue', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='ContinueViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody] # Troubleshooter ContinueRequest body. - # To construct, see NOTES section for CONTINUEREQUESTBODY properties and create a hash table. ${ContinueRequestBody}, [Parameter(ParameterSetName='ContinueExpanded')] [Parameter(ParameterSetName='ContinueViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[]] # . - # To construct, see NOTES section for RESPONSE properties and create a hash table. ${Response}, [Parameter(ParameterSetName='ContinueExpanded')] @@ -115,6 +116,18 @@ param( # Unique id of the result. ${StepId}, + [Parameter(ParameterSetName='ContinueViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Continue operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='ContinueViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Continue operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -177,6 +190,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -200,6 +222,8 @@ begin { ContinueExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueExpanded'; ContinueViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaIdentity'; ContinueViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded'; + ContinueViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath'; + ContinueViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -208,6 +232,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.ps1 index 782b65b93339..bd0bc3e87a70 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.ps1 @@ -23,11 +23,9 @@ Solution discovery using natural language processing. Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -SubscriptionId "6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -IssueSummary "Billing Issues" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -38,25 +36,14 @@ DISCOVERSOLUTIONREQUEST : Discover NLP request. [IssueSummary ]: Describe the issue with the affected resource. [ResourceId ]: Provide resourceId of affected resource [ServiceId ]: Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response - -INPUTOBJECT : Identity Parameter - [DiagnosticsResourceName ]: Unique resource name for insight resources - [Id ]: Resource identity path - [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. - [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - [SolutionResourceName ]: Solution resource Name. - [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. - [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpdiscoverysolutionnlpsubscriptionscope #> function Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse])] [CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Post')] - [Parameter(ParameterSetName='PostExpanded')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -64,51 +51,49 @@ param( # The value must be an UUID. ${SubscriptionId}, - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest] # Discover NLP request. - # To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ${DiscoverSolutionRequest}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Additional information in the form of a string. ${AdditionalContext}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Describe the issue with the affected resource. ${IssueSummary}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Provide resourceId of affected resource ${ResourceId}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Service Classification id for the resource. - # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response + # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ${ServiceId}, + [Parameter(ParameterSetName='PostViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Post operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='PostViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Post operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -165,6 +150,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -186,12 +180,10 @@ begin { $mapping = @{ Post = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post'; PostExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded'; - PostViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity'; - PostViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded'; + PostViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath'; + PostViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString'; } - if (('Post', 'PostExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { - $testPlayback = $false - $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + if (('Post', 'PostExpanded', 'PostViaJsonFilePath', 'PostViaJsonString') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId') ) { if ($testPlayback) { $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1') } else { @@ -205,6 +197,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.ps1 index 8c6b809ce22c..9eaf124ce605 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope.ps1 @@ -23,9 +23,9 @@ Solution discovery using natural language processing. Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -IssueSummary "Billing Issues" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -40,14 +40,13 @@ DISCOVERSOLUTIONREQUEST : Discover NLP request. https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpdiscoverysolutionnlptenantscope #> function Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse])] [CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest] # Discover NLP request. - # To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ${DiscoverSolutionRequest}, [Parameter(ParameterSetName='PostExpanded')] @@ -72,9 +71,21 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Service Classification id for the resource. - # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response + # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ${ServiceId}, + [Parameter(ParameterSetName='PostViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Post operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='PostViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Post operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -131,6 +142,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -152,6 +172,8 @@ begin { $mapping = @{ Post = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_Post'; PostExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded'; + PostViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath'; + PostViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -160,6 +182,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpWarmSolutionUp.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpWarmSolutionUp.ps1 index 35e094517f49..1c27efdc358e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpWarmSolutionUp.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Invoke-AzSelfHelpWarmSolutionUp.ps1 @@ -26,10 +26,10 @@ $parameters = [ordered]@{ } Invoke-AzSelfHelpWarmSolutionUp -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/aits-data-inestion/providers/Microsoft.KeyVault/vaults/kv-akshayko519290291381" -SolutionResourceName $resourceName -Parameter $parameters -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody .Outputs System.Boolean .Notes @@ -59,6 +59,8 @@ function Invoke-AzSelfHelpWarmSolutionUp { param( [Parameter(ParameterSetName='Warm', Mandatory)] [Parameter(ParameterSetName='WarmExpanded', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read @@ -66,6 +68,8 @@ param( [Parameter(ParameterSetName='Warm', Mandatory)] [Parameter(ParameterSetName='WarmExpanded', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Solution resource Name. @@ -76,25 +80,35 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Warm', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='WarmViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody] # Solution WarmUpRequest body - # To construct, see NOTES section for SOLUTIONWARMUPREQUESTBODY properties and create a hash table. ${SolutionWarmUpRequestBody}, [Parameter(ParameterSetName='WarmExpanded')] [Parameter(ParameterSetName='WarmViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters]))] [System.Collections.Hashtable] # Dictionary of ${Parameter}, + [Parameter(ParameterSetName='WarmViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Warm operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='WarmViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Warm operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -157,6 +171,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -180,6 +203,8 @@ begin { WarmExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmExpanded'; WarmViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaIdentity'; WarmViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded'; + WarmViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaJsonFilePath'; + WarmViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -188,6 +213,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpDiagnostic.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpDiagnostic.ps1 index 85467964f833..8c5516ca0301 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpDiagnostic.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpDiagnostic.ps1 @@ -16,10 +16,10 @@ <# .Synopsis -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. .Description -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. .Example $insightsToInvoke = [ordered]@{ @@ -27,13 +27,25 @@ $insightsToInvoke = [ordered]@{ } New-AzSelfHelpDiagnostic -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/aravind-test-resources/providers/Microsoft.KeyVault/vaults/ab-tests-kv-an" -SResourceName ab-test-973 -Insight $insightsToInvoke +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. + INSIGHT : SolutionIds that are needed to be invoked. [AdditionalParameter ]: Additional parameters required to invoke the solutionId. [(Any) ]: This indicates any property can be added to this object. @@ -42,37 +54,60 @@ INSIGHT : SolutionIds that are needed to be invoked. https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelpdiagnostic #> function New-AzSelfHelpDiagnostic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('DiagnosticsResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Unique resource name for insight resources ${SResourceName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters]))] [System.Collections.Hashtable] # Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results ${GlobalParameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[]] # SolutionIds that are needed to be invoked. - # To construct, see NOTES section for INSIGHT properties and create a hash table. ${Insight}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -141,6 +176,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -161,6 +205,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -169,6 +216,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSimplifiedSolution.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSimplifiedSolution.ps1 index 4d7fc14a720b..05882d89c11a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSimplifiedSolution.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSimplifiedSolution.ps1 @@ -16,13 +16,13 @@ <# .Synopsis -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
.Description -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API. @@ -36,41 +36,81 @@ $parameters = [ordered]@{ } New-AzSelfHelpSimplifiedSolution -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/aits-data-inestion/providers/Microsoft.KeyVault/vaults/kv-akshayko519290291381" -SResourceName $resourceName -SolutionId $solutionId -Parameter $parameters +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelpsimplifiedsolution #> function New-AzSelfHelpSimplifiedSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('SimplifiedSolutionsResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Simplified Solutions Resource Name. ${SResourceName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Simplified Solutions ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Solution Id to identify single Simplified Solution. ${SolutionId}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -139,6 +179,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -159,6 +208,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -167,6 +219,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSolution.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSolution.ps1 index f0bada7812b6..2587289a1f80 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSolution.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpSolution.ps1 @@ -16,7 +16,7 @@ <# .Synopsis -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -28,7 +28,7 @@ In the absence of the ‘requiredParameters’ it is likely that some of the sol ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters .Description -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -51,51 +51,86 @@ $parameters = [ordered]@{ New-AzSelfHelpSolution -ResourceName test-resource234 -Scope /subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/DiagnosticsRp-Ev2AssistId-Public-Dev/providers/Microsoft.KeyVault/vaults/DiagRp-Ev2PublicDev -Parameter $parameters -TriggerCriterion $criteria +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. + TRIGGERCRITERION : Solution request trigger criteria - [Name ]: Trigger criterion name. + [Name ]: Trigger criterion name. [Value ]: Trigger criterion value. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelpsolution #> function New-AzSelfHelpSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('SolutionResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Solution resource Name. ${ResourceName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Solution ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]] # Solution request trigger criteria - # To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ${TriggerCriterion}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -164,6 +199,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -184,6 +228,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -192,6 +239,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpTroubleshooter.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpTroubleshooter.ps1 index 4e283c4ad623..4432e3f0f701 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpTroubleshooter.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/New-AzSelfHelpTroubleshooter.ps1 @@ -16,13 +16,13 @@ <# .Synopsis -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections. .Description -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -35,41 +35,81 @@ $parameters = [ordered]@{ New-AzSelfHelpTroubleshooter -Scope "/subscriptions/6bded6d5-a 6af-43e1-96d3-bf71f6f5f8ba" -Name "12d59989-f8a9-4b69-9919-1ef51df4eff6" -Parameter $parameters -SolutionId "e104dbdf-9e14-4c9f-bc78-21ac90382231" +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelptroubleshooter #> function New-AzSelfHelpTroubleshooter { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('TroubleshooterName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Troubleshooter resource Name. ${Name}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Troubleshooter Resource ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Solution Id to identify single troubleshooter. ${SolutionId}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -126,6 +166,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -146,6 +195,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -154,6 +206,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/ProxyCmdletDefinitions.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/ProxyCmdletDefinitions.ps1 index 4454294a7ee2..bbdf7e9e3c9b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/ProxyCmdletDefinitions.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/ProxyCmdletDefinitions.ps1 @@ -25,7 +25,7 @@ Get the diagnostics using the 'diagnosticsResourceName' you chose while creating .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource .Notes COMPLEX PARAMETER PROPERTIES @@ -44,7 +44,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpdiagnostic #> function Get-AzSelfHelpDiagnostic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -64,7 +64,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -123,6 +122,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -152,6 +160,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -206,12 +217,12 @@ Lists the relevant Azure diagnostics and solutions using [problemClassification Get-AzSelfHelpDiscoverySolution -Filter "ProblemClassificationId eq 'a5db90c3-f147-bce6-83b0-ab5e0aeca1f0'" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource .Link https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpdiscoverysolution #> function Get-AzSelfHelpDiscoverySolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -285,6 +296,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -313,6 +333,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -369,7 +392,7 @@ Get-AzSelfHelpSimplifiedSolution -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3- .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource .Notes COMPLEX PARAMETER PROPERTIES @@ -388,7 +411,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpsimplifiedsolution #> function Get-AzSelfHelpSimplifiedSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -408,7 +431,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -467,6 +489,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -496,6 +527,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -552,7 +586,7 @@ Get-AzSelfHelpSolutionSelfHelp -SolutionId "apollo-48996ff7-002f-47c1-85b2-df138 .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp .Notes COMPLEX PARAMETER PROPERTIES @@ -571,7 +605,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpsolutionselfhelp #> function Get-AzSelfHelpSolutionSelfHelp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -585,7 +619,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -644,6 +677,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -673,6 +715,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -727,7 +772,7 @@ Get-AzSelfHelpSolution -ResourceName test-resource234 -Scope /subscriptions/6bd .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource .Notes COMPLEX PARAMETER PROPERTIES @@ -746,7 +791,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpsolution #> function Get-AzSelfHelpSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -766,7 +811,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -825,6 +869,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -854,6 +907,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -900,17 +956,17 @@ end { <# .Synopsis Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. .Description Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. -This API requires the Troubleshooter resource name that was created using the Create API. +This API requires the Troubleshooter resource name that was created using the get API. .Example Get-AzSelfHelpTroubleshooter -Scope "/subscriptions/" -Name "02d59989-f8a9-4b69-9919-1ef51df4eff6" .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource .Notes COMPLEX PARAMETER PROPERTIES @@ -929,7 +985,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelptroubleshooter #> function Get-AzSelfHelpTroubleshooter { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -949,7 +1005,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -1008,6 +1063,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -1037,6 +1101,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -1094,11 +1161,9 @@ $CHECKNAMEAVAILABILITYREQUEST = [ordered]@{ Invoke-AzSelfHelpCheckNameAvailability -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -CheckNameAvailabilityRequest $CHECKNAMEAVAILABILITYREQUEST .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -1107,60 +1172,49 @@ To create the parameters described below, construct a hash table containing the CHECKNAMEAVAILABILITYREQUEST : The check availability request body. [Name ]: The name of the resource for which availability needs to be checked. [Type ]: The resource type. - -INPUTOBJECT : Identity Parameter - [DiagnosticsResourceName ]: Unique resource name for insight resources - [Id ]: Resource identity path - [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. - [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - [SolutionResourceName ]: Solution resource Name. - [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. - [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpchecknameavailability #> function Invoke-AzSelfHelpCheckNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse])] [CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Post', Mandatory)] - [Parameter(ParameterSetName='PostExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest] # The check availability request body. - # To construct, see NOTES section for CHECKNAMEAVAILABILITYREQUEST properties and create a hash table. ${CheckNameAvailabilityRequest}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # The name of the resource for which availability needs to be checked. ${Name}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # The resource type. ${Type}, + [Parameter(ParameterSetName='PostViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Post operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='PostViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Post operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -1217,6 +1271,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -1238,8 +1301,8 @@ begin { $mapping = @{ Post = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_Post'; PostExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostExpanded'; - PostViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaIdentity'; - PostViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaIdentityExpanded'; + PostViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaJsonFilePath'; + PostViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpCheckNameAvailability_PostViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -1248,6 +1311,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -1295,11 +1361,11 @@ end { .Synopsis Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. .Description Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. -This API is used after the Troubleshooter has been created using the Create API. +This API is used after the Troubleshooter has been created using the continue API. .Example $continueRequest = [ordered]@{ "StepId" ="15ebac6c-96a1-4a67-ae9d-b06011d232ff" @@ -1308,7 +1374,7 @@ $continueRequest = [ordered]@{ Invoke-AzSelfHelpContinueTroubleshooter -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -TroubleshooterName "02d59989-f8a9-4b69-9919-1ef51df4eff6" -ContinueRequestBody $continueRequest .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs @@ -1319,9 +1385,9 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. CONTINUEREQUESTBODY : Troubleshooter ContinueRequest body. - [Response ]: + [Response >]: [QuestionId ]: id of the question. - [QuestionType ]: Type of Question + [QuestionType ]: Type of Question [Response ]: Response key for SingleInput. For Multi-line test/open ended question it is free form text [StepId ]: Unique id of the result. @@ -1337,7 +1403,7 @@ INPUTOBJECT : Identity Parameter RESPONSE : . [QuestionId ]: id of the question. - [QuestionType ]: Type of Question + [QuestionType ]: Type of Question [Response ]: Response key for SingleInput. For Multi-line test/open ended question it is free form text .Link https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpcontinuetroubleshooter @@ -1348,6 +1414,8 @@ function Invoke-AzSelfHelpContinueTroubleshooter { param( [Parameter(ParameterSetName='Continue', Mandatory)] [Parameter(ParameterSetName='ContinueExpanded', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read @@ -1355,6 +1423,8 @@ param( [Parameter(ParameterSetName='Continue', Mandatory)] [Parameter(ParameterSetName='ContinueExpanded', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='ContinueViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Troubleshooter resource Name. @@ -1365,24 +1435,21 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Continue', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='ContinueViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody] # Troubleshooter ContinueRequest body. - # To construct, see NOTES section for CONTINUEREQUESTBODY properties and create a hash table. ${ContinueRequestBody}, [Parameter(ParameterSetName='ContinueExpanded')] [Parameter(ParameterSetName='ContinueViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[]] # . - # To construct, see NOTES section for RESPONSE properties and create a hash table. ${Response}, [Parameter(ParameterSetName='ContinueExpanded')] @@ -1392,6 +1459,18 @@ param( # Unique id of the result. ${StepId}, + [Parameter(ParameterSetName='ContinueViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Continue operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='ContinueViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Continue operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -1454,6 +1533,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -1477,6 +1565,8 @@ begin { ContinueExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueExpanded'; ContinueViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaIdentity'; ContinueViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded'; + ContinueViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath'; + ContinueViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpContinueTroubleshooter_ContinueViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -1485,6 +1575,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -1537,11 +1630,9 @@ Solution discovery using natural language processing. Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -SubscriptionId "6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -IssueSummary "Billing Issues" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -1552,25 +1643,14 @@ DISCOVERSOLUTIONREQUEST : Discover NLP request. [IssueSummary ]: Describe the issue with the affected resource. [ResourceId ]: Provide resourceId of affected resource [ServiceId ]: Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response - -INPUTOBJECT : Identity Parameter - [DiagnosticsResourceName ]: Unique resource name for insight resources - [Id ]: Resource identity path - [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. - [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - [SolutionResourceName ]: Solution resource Name. - [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. - [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpdiscoverysolutionnlpsubscriptionscope #> function Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse])] [CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Post')] - [Parameter(ParameterSetName='PostExpanded')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -1578,51 +1658,49 @@ param( # The value must be an UUID. ${SubscriptionId}, - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest] # Discover NLP request. - # To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ${DiscoverSolutionRequest}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Additional information in the form of a string. ${AdditionalContext}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Describe the issue with the affected resource. ${IssueSummary}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Provide resourceId of affected resource ${ResourceId}, [Parameter(ParameterSetName='PostExpanded')] - [Parameter(ParameterSetName='PostViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Service Classification id for the resource. - # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response + # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ${ServiceId}, + [Parameter(ParameterSetName='PostViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Post operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='PostViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Post operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -1679,6 +1757,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -1700,12 +1787,10 @@ begin { $mapping = @{ Post = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post'; PostExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded'; - PostViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity'; - PostViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded'; + PostViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath'; + PostViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString'; } - if (('Post', 'PostExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { - $testPlayback = $false - $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + if (('Post', 'PostExpanded', 'PostViaJsonFilePath', 'PostViaJsonString') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId') ) { if ($testPlayback) { $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1') } else { @@ -1719,6 +1804,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -1771,9 +1859,9 @@ Solution discovery using natural language processing. Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope -IssueSummary "Billing Issues" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -1788,14 +1876,13 @@ DISCOVERSOLUTIONREQUEST : Discover NLP request. https://learn.microsoft.com/powershell/module/az.selfhelp/invoke-azselfhelpdiscoverysolutionnlptenantscope #> function Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse])] [CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest] # Discover NLP request. - # To construct, see NOTES section for DISCOVERSOLUTIONREQUEST properties and create a hash table. ${DiscoverSolutionRequest}, [Parameter(ParameterSetName='PostExpanded')] @@ -1820,9 +1907,21 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Service Classification id for the resource. - # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response + # You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response ${ServiceId}, + [Parameter(ParameterSetName='PostViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Post operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='PostViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Post operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -1879,6 +1978,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -1900,6 +2008,8 @@ begin { $mapping = @{ Post = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_Post'; PostExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded'; + PostViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath'; + PostViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -1908,6 +2018,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -1963,10 +2076,10 @@ $parameters = [ordered]@{ } Invoke-AzSelfHelpWarmSolutionUp -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/aits-data-inestion/providers/Microsoft.KeyVault/vaults/kv-akshayko519290291381" -SolutionResourceName $resourceName -Parameter $parameters -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody .Outputs System.Boolean .Notes @@ -1996,6 +2109,8 @@ function Invoke-AzSelfHelpWarmSolutionUp { param( [Parameter(ParameterSetName='Warm', Mandatory)] [Parameter(ParameterSetName='WarmExpanded', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read @@ -2003,6 +2118,8 @@ param( [Parameter(ParameterSetName='Warm', Mandatory)] [Parameter(ParameterSetName='WarmExpanded', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='WarmViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Solution resource Name. @@ -2013,25 +2130,35 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Warm', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='WarmViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody] # Solution WarmUpRequest body - # To construct, see NOTES section for SOLUTIONWARMUPREQUESTBODY properties and create a hash table. ${SolutionWarmUpRequestBody}, [Parameter(ParameterSetName='WarmExpanded')] [Parameter(ParameterSetName='WarmViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters]))] [System.Collections.Hashtable] # Dictionary of ${Parameter}, + [Parameter(ParameterSetName='WarmViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Warm operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='WarmViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Warm operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2094,6 +2221,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -2117,6 +2253,8 @@ begin { WarmExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmExpanded'; WarmViaIdentity = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaIdentity'; WarmViaIdentityExpanded = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded'; + WarmViaJsonFilePath = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaJsonFilePath'; + WarmViaJsonString = 'Az.SelfHelp.private\Invoke-AzSelfHelpWarmSolutionUp_WarmViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -2125,6 +2263,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -2170,10 +2311,10 @@ end { <# .Synopsis -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. .Description -Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions. +create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API. .Example $insightsToInvoke = [ordered]@{ @@ -2181,13 +2322,25 @@ $insightsToInvoke = [ordered]@{ } New-AzSelfHelpDiagnostic -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/aravind-test-resources/providers/Microsoft.KeyVault/vaults/ab-tests-kv-an" -SResourceName ab-test-973 -Insight $insightsToInvoke +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. + INSIGHT : SolutionIds that are needed to be invoked. [AdditionalParameter ]: Additional parameters required to invoke the solutionId. [(Any) ]: This indicates any property can be added to this object. @@ -2196,37 +2349,60 @@ INSIGHT : SolutionIds that are needed to be invoked. https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelpdiagnostic #> function New-AzSelfHelpDiagnostic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('DiagnosticsResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Unique resource name for insight resources ${SResourceName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters]))] [System.Collections.Hashtable] # Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results ${GlobalParameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[]] # SolutionIds that are needed to be invoked. - # To construct, see NOTES section for INSIGHT properties and create a hash table. ${Insight}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2295,6 +2471,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -2315,6 +2500,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpDiagnostic_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -2323,6 +2511,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -2368,13 +2559,13 @@ end { <# .Synopsis -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
.Description -Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API. @@ -2388,41 +2579,81 @@ $parameters = [ordered]@{ } New-AzSelfHelpSimplifiedSolution -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/aits-data-inestion/providers/Microsoft.KeyVault/vaults/kv-akshayko519290291381" -SResourceName $resourceName -SolutionId $solutionId -Parameter $parameters +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelpsimplifiedsolution #> function New-AzSelfHelpSimplifiedSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('SimplifiedSolutionsResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Simplified Solutions Resource Name. ${SResourceName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Simplified Solutions ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Solution Id to identify single Simplified Solution. ${SolutionId}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2491,6 +2722,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -2511,6 +2751,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpSimplifiedSolution_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -2519,6 +2762,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -2564,7 +2810,7 @@ end { <# .Synopsis -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -2576,7 +2822,7 @@ In the absence of the ‘requiredParameters’ it is likely that some of the sol ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters .Description -Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. +create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. @@ -2599,51 +2845,86 @@ $parameters = [ordered]@{ New-AzSelfHelpSolution -ResourceName test-resource234 -Scope /subscriptions/6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba/resourceGroups/DiagnosticsRp-Ev2AssistId-Public-Dev/providers/Microsoft.KeyVault/vaults/DiagRp-Ev2PublicDev -Parameter $parameters -TriggerCriterion $criteria +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. + TRIGGERCRITERION : Solution request trigger criteria - [Name ]: Trigger criterion name. + [Name ]: Trigger criterion name. [Value ]: Trigger criterion value. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelpsolution #> function New-AzSelfHelpSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('SolutionResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Solution resource Name. ${ResourceName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Solution ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]] # Solution request trigger criteria - # To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ${TriggerCriterion}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2712,6 +2993,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -2732,6 +3022,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpSolution_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -2740,6 +3033,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -2785,13 +3081,13 @@ end { <# .Synopsis -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections. .Description -Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger. +create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. @@ -2804,41 +3100,81 @@ $parameters = [ordered]@{ New-AzSelfHelpTroubleshooter -Scope "/subscriptions/6bded6d5-a 6af-43e1-96d3-bf71f6f5f8ba" -Name "12d59989-f8a9-4b69-9919-1ef51df4eff6" -Parameter $parameters -SolutionId "e104dbdf-9e14-4c9f-bc78-21ac90382231" +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [DiagnosticsResourceName ]: Unique resource name for insight resources + [Id ]: Resource identity path + [Scope ]: scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + [SimplifiedSolutionsResourceName ]: Simplified Solutions Resource Name. + [SolutionId ]: SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + [SolutionResourceName ]: Solution resource Name. + [SubscriptionId ]: The ID of the target subscription. The value must be an UUID. + [TroubleshooterName ]: Troubleshooter resource Name. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/new-azselfhelptroubleshooter #> function New-AzSelfHelpTroubleshooter { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Alias('TroubleshooterName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # Troubleshooter resource Name. ${Name}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ${Scope}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Troubleshooter Resource ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] [System.String] # Solution Id to identify single troubleshooter. ${SolutionId}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2895,6 +3231,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -2915,6 +3260,9 @@ begin { $mapping = @{ CreateExpanded = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateExpanded'; + CreateViaIdentityExpanded = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateViaIdentityExpanded'; + CreateViaJsonFilePath = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateViaJsonFilePath'; + CreateViaJsonString = 'Az.SelfHelp.private\New-AzSelfHelpTroubleshooter_CreateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -2923,6 +3271,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -2979,7 +3330,7 @@ Restart-AzSelfHelpTroubleshooter -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3- .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -2998,7 +3349,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/restart-azselfhelptroubleshooter #> function Restart-AzSelfHelpTroubleshooter { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse])] [CmdletBinding(DefaultParameterSetName='Restart', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Restart', Mandatory)] @@ -3018,7 +3369,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -3077,6 +3427,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -3106,6 +3465,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -3199,7 +3561,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -3264,6 +3625,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -3293,6 +3663,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) @@ -3338,9 +3711,9 @@ end { <# .Synopsis -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution .Description -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution .Example $parameters = [ordered]@{ "SearchText" = "Can not Search" @@ -3354,7 +3727,7 @@ Update-AzSelfHelpSolution -ResourceName test-resource234 -Scope /subscriptions/ .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource .Notes COMPLEX PARAMETER PROPERTIES @@ -3371,16 +3744,18 @@ INPUTOBJECT : Identity Parameter [TroubleshooterName ]: Troubleshooter resource Name. TRIGGERCRITERION : Solution request trigger criteria - [Name ]: Trigger criterion name. + [Name ]: Trigger criterion name. [Value ]: Trigger criterion value. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/update-azselfhelpsolution #> function Update-AzSelfHelpSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] [Alias('SolutionResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] @@ -3388,6 +3763,8 @@ param( ${ResourceName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read @@ -3397,24 +3774,36 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Solution ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]] # Solution request trigger criteria - # To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ${TriggerCriterion}, + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Update operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Update operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -3483,6 +3872,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -3504,6 +3902,8 @@ begin { $mapping = @{ UpdateExpanded = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateExpanded'; UpdateViaIdentityExpanded = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateViaIdentityExpanded'; + UpdateViaJsonFilePath = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateViaJsonFilePath'; + UpdateViaJsonString = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -3512,6 +3912,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Restart-AzSelfHelpTroubleshooter.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Restart-AzSelfHelpTroubleshooter.ps1 index 5a37bd0ace08..c1229f1fa0c3 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Restart-AzSelfHelpTroubleshooter.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Restart-AzSelfHelpTroubleshooter.ps1 @@ -27,7 +27,7 @@ Restart-AzSelfHelpTroubleshooter -Scope "/subscriptions/6bded6d5-a6af-43e1-96d3- .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse .Notes COMPLEX PARAMETER PROPERTIES @@ -46,7 +46,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.selfhelp/restart-azselfhelptroubleshooter #> function Restart-AzSelfHelpTroubleshooter { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse])] [CmdletBinding(DefaultParameterSetName='Restart', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Restart', Mandatory)] @@ -66,7 +66,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -125,6 +124,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -154,6 +162,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Stop-AzSelfHelpTroubleshooter.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Stop-AzSelfHelpTroubleshooter.ps1 index 09ce3dcbc22f..265e0661bd51 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Stop-AzSelfHelpTroubleshooter.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Stop-AzSelfHelpTroubleshooter.ps1 @@ -64,7 +64,6 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] @@ -129,6 +128,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -158,6 +166,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/exports/Update-AzSelfHelpSolution.ps1 b/generated/SelfHelp/SelfHelp.Autorest/exports/Update-AzSelfHelpSolution.ps1 index 073bc7ff1b24..71dfec23ddb5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/exports/Update-AzSelfHelpSolution.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/exports/Update-AzSelfHelpSolution.ps1 @@ -16,9 +16,9 @@ <# .Synopsis -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution .Description -Update the requiredInputs or additional information needed to execute the solution +update the requiredInputs or additional information needed to execute the solution .Example $parameters = [ordered]@{ "SearchText" = "Can not Search" @@ -32,7 +32,7 @@ Update-AzSelfHelpSolution -ResourceName test-resource234 -Scope /subscriptions/ .Inputs Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource .Notes COMPLEX PARAMETER PROPERTIES @@ -49,16 +49,18 @@ INPUTOBJECT : Identity Parameter [TroubleshooterName ]: Troubleshooter resource Name. TRIGGERCRITERION : Solution request trigger criteria - [Name ]: Trigger criterion name. + [Name ]: Trigger criterion name. [Value ]: Trigger criterion value. .Link https://learn.microsoft.com/powershell/module/az.selfhelp/update-azselfhelpsolution #> function Update-AzSelfHelpSolution { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] [Alias('SolutionResourceName')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] @@ -66,6 +68,8 @@ param( ${ResourceName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [System.String] # scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read @@ -75,24 +79,36 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity] # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters]))] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters]))] [System.Collections.Hashtable] # Client input parameters to run Solution ${Parameter}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]] # Solution request trigger criteria - # To construct, see NOTES section for TRIGGERCRITERION properties and create a hash table. ${TriggerCriterion}, + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Path of Json file supplied to the Update operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category('Body')] + [System.String] + # Json string supplied to the Update operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -161,6 +177,15 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } + + $context = Get-AzContext + if (-not $context -and -not $testPlayback) { + Write-Error "No Azure login detected. Please run 'Connect-AzAccount' to log in." + exit + } if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString() @@ -182,6 +207,8 @@ begin { $mapping = @{ UpdateExpanded = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateExpanded'; UpdateViaIdentityExpanded = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateViaIdentityExpanded'; + UpdateViaJsonFilePath = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateViaJsonFilePath'; + UpdateViaJsonString = 'Az.SelfHelp.private\Update-AzSelfHelpSolution_UpdateViaJsonString'; } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) @@ -190,6 +217,9 @@ begin { [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name) } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/generate-info.json b/generated/SelfHelp/SelfHelp.Autorest/generate-info.json index c3115e8be3e7..c8dbd3a63439 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generate-info.json +++ b/generated/SelfHelp/SelfHelp.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "673a2be0-2ac0-446e-a557-5cb7bd0bec5c" + "generate_Id": "14962a8a-9a35-47c6-8892-dc7a0a2fde6e" } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/Module.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/Module.cs index 6a3fafe9a185..0c423a48290c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/Module.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/Module.cs @@ -28,12 +28,20 @@ public partial class Module public global::System.Net.Http.HttpClientHandler _handler = new global::System.Net.Http.HttpClientHandler(); + private static bool _init = false; + + private static readonly global::System.Object _initLock = new global::System.Object(); + + private static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module _instance; + /// the ISendAsync pipeline instance private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline _pipeline; /// the ISendAsync pipeline instance (when proxy is enabled) private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline _pipelineWithProxy; + private static readonly global::System.Object _singletonLock = new global::System.Object(); + public bool _useProxy = false; public global::System.Net.WebProxy _webProxy = new global::System.Net.WebProxy(); @@ -56,11 +64,8 @@ public partial class Module /// The delegate to get the telemetry info. public GetTelemetryInfoDelegate GetTelemetryInfo { get; set; } - /// Backing field for property. - private static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module _instance; - /// the singleton of this module class - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module Instance => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module._instance?? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module._instance = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module()); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module Instance { get { if (_instance == null) { lock (_singletonLock) { if (_instance == null) { _instance = new Module(); }}} return _instance; } } /// The Name of this module public string Name => @"Az.SelfHelp"; @@ -125,9 +130,17 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline CreatePi /// Initialization steps performed after the module is loaded. public void Init() { - OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipeline.Prepend(step); } , (step)=> { _pipeline.Append(step); } ); - OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipelineWithProxy.Prepend(step); } , (step)=> { _pipelineWithProxy.Append(step); } ); - CustomInit(); + if (_init == false) + { + lock (_initLock) { + if (_init == false) { + OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipeline.Prepend(step); } , (step)=> { _pipeline.Append(step); } ); + OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipelineWithProxy.Prepend(step); } , (step)=> { _pipelineWithProxy.Append(step); } ); + CustomInit(); + _init = true; + } + } + } } /// Creates the module instance. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.PowerShell.cs index 49fcf1357396..da70c78f5586 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.PowerShell.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - /// Any object + /// Anything [System.ComponentModel.TypeConverter(typeof(AnyTypeConverter))] public partial class Any { @@ -146,7 +146,7 @@ public override string ToString() return ToJsonString(); } } - /// Any object + /// Anything [System.ComponentModel.TypeConverter(typeof(AnyTypeConverter))] public partial interface IAny diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.cs index 03b44e330d57..f5fa913d8010 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - /// Any object + /// Anything public partial class Any : Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAnyInternal @@ -19,13 +19,13 @@ public Any() } } - /// Any object + /// Anything public partial interface IAny : Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable { } - /// Any object + /// Anything internal partial interface IAnyInternal { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.json.cs index b54e0e604045..639ee8f2ad55 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Any.json.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - /// Any object + /// Anything public partial class Any { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.PowerShell.cs deleted file mode 100644 index 047857a104e2..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.PowerShell.cs +++ /dev/null @@ -1,284 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Diagnostic resource - [System.ComponentModel.TypeConverter(typeof(DiagnosticResourceTypeConverter))] - public partial class DiagnosticResource - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new DiagnosticResource(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new DiagnosticResource(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal DiagnosticResource(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("GlobalParameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); - } - if (content.Contains("Insight")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationTypeConverter.ConvertFrom)); - } - if (content.Contains("AcceptedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).AcceptedAt, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState.CreateFrom); - } - if (content.Contains("Diagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Diagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal DiagnosticResource(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("GlobalParameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); - } - if (content.Contains("Insight")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationTypeConverter.ConvertFrom)); - } - if (content.Contains("AcceptedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).AcceptedAt, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState.CreateFrom); - } - if (content.Contains("Diagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Diagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Diagnostic resource - [System.ComponentModel.TypeConverter(typeof(DiagnosticResourceTypeConverter))] - public partial interface IDiagnosticResource - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.cs deleted file mode 100644 index 53330d6c19d7..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.cs +++ /dev/null @@ -1,214 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Diagnostic resource - public partial class DiagnosticResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); - - /// Diagnostic Request Accepted time. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string AcceptedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).AcceptedAt; } - - /// Array of Diagnostics. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Diagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).Diagnostic; } - - /// - /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics - /// results - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).GlobalParameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).GlobalParameter = value ?? null /* model class */; } - - /// - /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// SolutionIds that are needed to be invoked. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).Insight; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).Insight = value ?? null /* arrayOf */; } - - /// Internal Acessors for AcceptedAt - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal.AcceptedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).AcceptedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).AcceptedAt = value; } - - /// Internal Acessors for Diagnostic - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal.Diagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).Diagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).Diagnostic = value; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourceProperties()); set { {_property = value;} } } - - /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).ProvisioningState = value; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties _property; - - /// Diagnostic Resource properties. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourceProperties()); set => this._property = value; } - - /// Status of diagnostic provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)Property).ProvisioningState; } - - /// Gets the resource group name - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } - - /// - /// Azure Resource Manager metadata containing createdBy and modifiedBy information. - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } - - /// Creates an new instance. - public DiagnosticResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// Diagnostic resource - public partial interface IDiagnosticResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource - { - /// Diagnostic Request Accepted time. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Diagnostic Request Accepted time.", - SerializedName = @"acceptedAt", - PossibleTypes = new [] { typeof(string) })] - string AcceptedAt { get; } - /// Array of Diagnostics. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Array of Diagnostics.", - SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Diagnostic { get; } - /// - /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics - /// results - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results", - SerializedName = @"globalParameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } - /// SolutionIds that are needed to be invoked. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"SolutionIds that are needed to be invoked.", - SerializedName = @"insights", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get; set; } - /// Status of diagnostic provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Status of diagnostic provisioning.", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? ProvisioningState { get; } - - } - /// Diagnostic resource - internal partial interface IDiagnosticResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal - { - /// Diagnostic Request Accepted time. - string AcceptedAt { get; set; } - /// Array of Diagnostics. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Diagnostic { get; set; } - /// - /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics - /// results - /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } - /// SolutionIds that are needed to be invoked. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get; set; } - /// Diagnostic Resource properties. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties Property { get; set; } - /// Status of diagnostic provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? ProvisioningState { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.PowerShell.cs deleted file mode 100644 index d205c91fa535..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.PowerShell.cs +++ /dev/null @@ -1,294 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Simplified Solutions response. - [System.ComponentModel.TypeConverter(typeof(SimplifiedSolutionsResourceTypeConverter))] - public partial class SimplifiedSolutionsResource - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SimplifiedSolutionsResource(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SimplifiedSolutionsResource(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SimplifiedSolutionsResource(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Appendix")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SimplifiedSolutionsResource(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Appendix")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Simplified Solutions response. - [System.ComponentModel.TypeConverter(typeof(SimplifiedSolutionsResourceTypeConverter))] - public partial interface ISimplifiedSolutionsResource - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.cs deleted file mode 100644 index 740bcb89d2e4..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.cs +++ /dev/null @@ -1,136 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Metadata resource - public partial class SolutionMetadataResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); - - /// - /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Solutions()); set { {_property = value;} } } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions _property; - - /// Solution metadata Resource properties. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Solutions()); set => this._property = value; } - - /// List of metadata. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal)Property).Solution; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal)Property).Solution = value ?? null /* arrayOf */; } - - /// - /// Azure Resource Manager metadata containing createdBy and modifiedBy information. - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } - - /// Creates an new instance. - public SolutionMetadataResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// Metadata resource - public partial interface ISolutionMetadataResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource - { - /// List of metadata. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"List of metadata.", - SerializedName = @"solutions", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } - - } - /// Metadata resource - internal partial interface ISolutionMetadataResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal - { - /// Solution metadata Resource properties. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions Property { get; set; } - /// List of metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.PowerShell.cs deleted file mode 100644 index 4b5cb7cdc918..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.PowerShell.cs +++ /dev/null @@ -1,294 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Nlp Metadata resource - [System.ComponentModel.TypeConverter(typeof(SolutionNlpMetadataResourceTypeConverter))] - public partial class SolutionNlpMetadataResource - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SolutionNlpMetadataResource(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SolutionNlpMetadataResource(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SolutionNlpMetadataResource(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutionsTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("ProblemTitle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemTitle, global::System.Convert.ToString); - } - if (content.Contains("ProblemDescription")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemDescription, global::System.Convert.ToString); - } - if (content.Contains("ServiceId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ServiceId, global::System.Convert.ToString); - } - if (content.Contains("ProblemClassificationId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId, global::System.Convert.ToString); - } - if (content.Contains("Solution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("RelatedService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).RelatedService = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationServiceTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SolutionNlpMetadataResource(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutionsTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("ProblemTitle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemTitle, global::System.Convert.ToString); - } - if (content.Contains("ProblemDescription")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemDescription, global::System.Convert.ToString); - } - if (content.Contains("ServiceId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ServiceId, global::System.Convert.ToString); - } - if (content.Contains("ProblemClassificationId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId, global::System.Convert.ToString); - } - if (content.Contains("Solution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("RelatedService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).RelatedService = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationServiceTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Nlp Metadata resource - [System.ComponentModel.TypeConverter(typeof(SolutionNlpMetadataResourceTypeConverter))] - public partial interface ISolutionNlpMetadataResource - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.PowerShell.cs deleted file mode 100644 index 4aec9d66476a..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.PowerShell.cs +++ /dev/null @@ -1,278 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Solution PatchRequest body - [System.ComponentModel.TypeConverter(typeof(SolutionPatchRequestBodyTypeConverter))] - public partial class SolutionPatchRequestBody - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SolutionPatchRequestBody(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SolutionPatchRequestBody(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SolutionPatchRequestBody(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); - } - if (content.Contains("TriggerCriterion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).TriggerCriterion = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterionTypeConverter.ConvertFrom)); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapDiagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapTroubleshooter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapMetricsBasedChart")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SolutionPatchRequestBody(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); - } - if (content.Contains("TriggerCriterion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).TriggerCriterion = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterionTypeConverter.ConvertFrom)); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapDiagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapTroubleshooter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapMetricsBasedChart")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Solution PatchRequest body - [System.ComponentModel.TypeConverter(typeof(SolutionPatchRequestBodyTypeConverter))] - public partial interface ISolutionPatchRequestBody - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.cs deleted file mode 100644 index 3273fcbefff6..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.cs +++ /dev/null @@ -1,254 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Solution PatchRequest body - public partial class SolutionPatchRequestBody : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal - { - - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Content; } - - /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Content = value; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties()); set { {_property = value;} } } - - /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ProvisioningState = value; } - - /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.ReplacementMap { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMap; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMap = value; } - - /// Internal Acessors for Section - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Section; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Section = value; } - - /// Internal Acessors for SolutionId - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).SolutionId = value; } - - /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBodyInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Title = value; } - - /// Client input parameters to run Solution - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Parameter = value ?? null /* model class */; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties _property; - - /// Solution result - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties()); set => this._property = value; } - - /// Status of solution provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ProvisioningState; } - - /// Solution diagnostics results. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic = value ?? null /* arrayOf */; } - - /// Solution metrics based charts - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart = value ?? null /* arrayOf */; } - - /// Solutions Troubleshooters - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter = value ?? null /* arrayOf */; } - - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo = value ?? null /* arrayOf */; } - - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup = value ?? null /* arrayOf */; } - - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult = value ?? null /* arrayOf */; } - - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Section; } - - /// Solution Id to identify single solution. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).SolutionId; } - - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Title; } - - /// Solution request trigger criteria - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).TriggerCriterion; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).TriggerCriterion = value ?? null /* arrayOf */; } - - /// Creates an new instance. - public SolutionPatchRequestBody() - { - - } - } - /// Solution PatchRequest body - public partial interface ISolutionPatchRequestBody : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable - { - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The HTML content that needs to be rendered and shown to customer.", - SerializedName = @"content", - PossibleTypes = new [] { typeof(string) })] - string Content { get; } - /// Client input parameters to run Solution - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Client input parameters to run Solution", - SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get; set; } - /// Status of solution provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Status of solution provisioning.", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; } - /// Solution diagnostics results. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution diagnostics results.", - SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } - /// Solution metrics based charts - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution metrics based charts", - SerializedName = @"metricsBasedCharts", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } - /// Solutions Troubleshooters - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solutions Troubleshooters", - SerializedName = @"troubleshooters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", - SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Group of Videos", - SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution AzureKB results", - SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"List of section object.", - SerializedName = @"sections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get; } - /// Solution Id to identify single solution. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Solution Id to identify single solution.", - SerializedName = @"solutionId", - PossibleTypes = new [] { typeof(string) })] - string SolutionId { get; } - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The title.", - SerializedName = @"title", - PossibleTypes = new [] { typeof(string) })] - string Title { get; } - /// Solution request trigger criteria - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution request trigger criteria", - SerializedName = @"triggerCriteria", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get; set; } - - } - /// Solution PatchRequest body - internal partial interface ISolutionPatchRequestBodyInternal - - { - /// The HTML content that needs to be rendered and shown to customer. - string Content { get; set; } - /// Client input parameters to run Solution - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get; set; } - /// Solution result - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties Property { get; set; } - /// Status of solution provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; set; } - /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ReplacementMap { get; set; } - /// Solution diagnostics results. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } - /// Solution metrics based charts - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } - /// Solutions Troubleshooters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get; set; } - /// Solution Id to identify single solution. - string SolutionId { get; set; } - /// The title. - string Title { get; set; } - /// Solution request trigger criteria - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.PowerShell.cs deleted file mode 100644 index 65b684d9f3e2..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.PowerShell.cs +++ /dev/null @@ -1,364 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Solution response. - [System.ComponentModel.TypeConverter(typeof(SolutionResourceTypeConverter))] - public partial class SolutionResource - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SolutionResource(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SolutionResource(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SolutionResource(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); - } - if (content.Contains("TriggerCriterion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).TriggerCriterion = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterionTypeConverter.ConvertFrom)); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapDiagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapTroubleshooter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapMetricsBasedChart")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SolutionResource(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); - } - if (content.Contains("TriggerCriterion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).TriggerCriterion = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterionTypeConverter.ConvertFrom)); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapDiagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapTroubleshooter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapMetricsBasedChart")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Solution response. - [System.ComponentModel.TypeConverter(typeof(SolutionResourceTypeConverter))] - public partial interface ISolutionResource - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.cs deleted file mode 100644 index 85f5025a19b1..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.cs +++ /dev/null @@ -1,360 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Solution response. - public partial class SolutionResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IHeaderSerializable - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); - - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Content; } - - /// - /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// Backing field for property. - private string _location; - - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string Location { get => this._location; set => this._location = value; } - - /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Content = value; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties()); set { {_property = value;} } } - - /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ProvisioningState = value; } - - /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.ReplacementMap { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMap; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMap = value; } - - /// Internal Acessors for Section - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Section; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Section = value; } - - /// Internal Acessors for SolutionId - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).SolutionId = value; } - - /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Title = value; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } - - /// Client input parameters to run Solution - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Parameter = value ?? null /* model class */; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties _property; - - /// Solution result - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties()); set => this._property = value; } - - /// Status of solution provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ProvisioningState; } - - /// Solution diagnostics results. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic = value ?? null /* arrayOf */; } - - /// Solution metrics based charts - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart = value ?? null /* arrayOf */; } - - /// Solutions Troubleshooters - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter = value ?? null /* arrayOf */; } - - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo = value ?? null /* arrayOf */; } - - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup = value ?? null /* arrayOf */; } - - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult = value ?? null /* arrayOf */; } - - /// Gets the resource group name - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } - - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Section; } - - /// Solution Id to identify single solution. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).SolutionId; } - - /// - /// Azure Resource Manager metadata containing createdBy and modifiedBy information. - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).Title; } - - /// Solution request trigger criteria - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).TriggerCriterion; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)Property).TriggerCriterion = value ?? null /* arrayOf */; } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } - - /// - void Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IHeaderSerializable.ReadHeaders(global::System.Net.Http.Headers.HttpResponseHeaders headers) - { - if (headers.TryGetValues("Location", out var __locationHeader0)) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceInternal)this).Location = System.Linq.Enumerable.FirstOrDefault(__locationHeader0) is string __headerLocationHeader0 ? __headerLocationHeader0 : (string)null; - } - } - - /// Creates an new instance. - public SolutionResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// Solution response. - public partial interface ISolutionResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource - { - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The HTML content that needs to be rendered and shown to customer.", - SerializedName = @"content", - PossibleTypes = new [] { typeof(string) })] - string Content { get; } - - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"", - SerializedName = @"Location", - PossibleTypes = new [] { typeof(string) })] - string Location { get; set; } - /// Client input parameters to run Solution - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Client input parameters to run Solution", - SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get; set; } - /// Status of solution provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Status of solution provisioning.", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; } - /// Solution diagnostics results. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution diagnostics results.", - SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } - /// Solution metrics based charts - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution metrics based charts", - SerializedName = @"metricsBasedCharts", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } - /// Solutions Troubleshooters - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solutions Troubleshooters", - SerializedName = @"troubleshooters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", - SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Group of Videos", - SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution AzureKB results", - SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"List of section object.", - SerializedName = @"sections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get; } - /// Solution Id to identify single solution. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Solution Id to identify single solution.", - SerializedName = @"solutionId", - PossibleTypes = new [] { typeof(string) })] - string SolutionId { get; } - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The title.", - SerializedName = @"title", - PossibleTypes = new [] { typeof(string) })] - string Title { get; } - /// Solution request trigger criteria - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution request trigger criteria", - SerializedName = @"triggerCriteria", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get; set; } - - } - /// Solution response. - internal partial interface ISolutionResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal - { - /// The HTML content that needs to be rendered and shown to customer. - string Content { get; set; } - - string Location { get; set; } - /// Client input parameters to run Solution - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get; set; } - /// Solution result - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties Property { get; set; } - /// Status of solution provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; set; } - /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ReplacementMap { get; set; } - /// Solution diagnostics results. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } - /// Solution metrics based charts - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } - /// Solutions Troubleshooters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get; set; } - /// Solution Id to identify single solution. - string SolutionId { get; set; } - /// The title. - string Title { get; set; } - /// Solution request trigger criteria - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.PowerShell.cs deleted file mode 100644 index ce70485b67fc..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.PowerShell.cs +++ /dev/null @@ -1,270 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Solution result - [System.ComponentModel.TypeConverter(typeof(SolutionResourcePropertiesTypeConverter))] - public partial class SolutionResourceProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SolutionResourceProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SolutionResourceProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SolutionResourceProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); - } - if (content.Contains("TriggerCriterion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).TriggerCriterion = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterionTypeConverter.ConvertFrom)); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapDiagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapTroubleshooter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapMetricsBasedChart")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SolutionResourceProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); - } - if (content.Contains("TriggerCriterion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).TriggerCriterion = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterionTypeConverter.ConvertFrom)); - } - if (content.Contains("Parameter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapDiagnostic")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapTroubleshooter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapMetricsBasedChart")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Solution result - [System.ComponentModel.TypeConverter(typeof(SolutionResourcePropertiesTypeConverter))] - public partial interface ISolutionResourceProperties - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.cs deleted file mode 100644 index 0d5e99c62c2e..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.cs +++ /dev/null @@ -1,270 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Solution result - public partial class SolutionResourceProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal - { - - /// Backing field for property. - private string _content; - - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string Content { get => this._content; } - - /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal.Content { get => this._content; set { {_content = value;} } } - - /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } - - /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMaps()); set { {_replacementMap = value;} } } - - /// Internal Acessors for Section - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal.Section { get => this._section; set { {_section = value;} } } - - /// Internal Acessors for SolutionId - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal.SolutionId { get => this._solutionId; set { {_solutionId = value;} } } - - /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesInternal.Title { get => this._title; set { {_title = value;} } } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters _parameter; - - /// Client input parameters to run Solution - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParameters()); set => this._parameter = value; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? _provisioningState; - - /// Status of solution provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get => this._provisioningState; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps _replacementMap; - - /// Solution replacement maps. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMaps()); } - - /// Solution diagnostics results. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Diagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Diagnostic = value ?? null /* arrayOf */; } - - /// Solution metrics based charts - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart = value ?? null /* arrayOf */; } - - /// Solutions Troubleshooters - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Troubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Troubleshooter = value ?? null /* arrayOf */; } - - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } - - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } - - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] _section; - - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get => this._section; } - - /// Backing field for property. - private string _solutionId; - - /// Solution Id to identify single solution. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string SolutionId { get => this._solutionId; } - - /// Backing field for property. - private string _title; - - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string Title { get => this._title; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] _triggerCriterion; - - /// Solution request trigger criteria - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get => this._triggerCriterion; set => this._triggerCriterion = value; } - - /// Creates an new instance. - public SolutionResourceProperties() - { - - } - } - /// Solution result - public partial interface ISolutionResourceProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable - { - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The HTML content that needs to be rendered and shown to customer.", - SerializedName = @"content", - PossibleTypes = new [] { typeof(string) })] - string Content { get; } - /// Client input parameters to run Solution - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Client input parameters to run Solution", - SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get; set; } - /// Status of solution provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Status of solution provisioning.", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; } - /// Solution diagnostics results. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution diagnostics results.", - SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } - /// Solution metrics based charts - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution metrics based charts", - SerializedName = @"metricsBasedCharts", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } - /// Solutions Troubleshooters - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solutions Troubleshooters", - SerializedName = @"troubleshooters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", - SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Group of Videos", - SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution AzureKB results", - SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"List of section object.", - SerializedName = @"sections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get; } - /// Solution Id to identify single solution. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Solution Id to identify single solution.", - SerializedName = @"solutionId", - PossibleTypes = new [] { typeof(string) })] - string SolutionId { get; } - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The title.", - SerializedName = @"title", - PossibleTypes = new [] { typeof(string) })] - string Title { get; } - /// Solution request trigger criteria - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution request trigger criteria", - SerializedName = @"triggerCriteria", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get; set; } - - } - /// Solution result - internal partial interface ISolutionResourcePropertiesInternal - - { - /// The HTML content that needs to be rendered and shown to customer. - string Content { get; set; } - /// Client input parameters to run Solution - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get; set; } - /// Status of solution provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; set; } - /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ReplacementMap { get; set; } - /// Solution diagnostics results. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } - /// Solution metrics based charts - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } - /// Solutions Troubleshooters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[] Section { get; set; } - /// Solution Id to identify single solution. - string SolutionId { get; set; } - /// The title. - string Title { get; set; } - /// Solution request trigger criteria - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.PowerShell.cs deleted file mode 100644 index 80df59830e19..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.PowerShell.cs +++ /dev/null @@ -1,310 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Self Help Solution response. - [System.ComponentModel.TypeConverter(typeof(SolutionResourceSelfHelpTypeConverter))] - public partial class SolutionResourceSelfHelp - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SolutionResourceSelfHelp(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SolutionResourceSelfHelp(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SolutionResourceSelfHelp(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelpTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelpTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SolutionResourceSelfHelp(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelpTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("ReplacementMap")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); - } - if (content.Contains("SolutionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Content")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Content, global::System.Convert.ToString); - } - if (content.Contains("Section")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelpTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapWebResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); - } - if (content.Contains("ReplacementMapVideoGroup")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Self Help Solution response. - [System.ComponentModel.TypeConverter(typeof(SolutionResourceSelfHelpTypeConverter))] - public partial interface ISolutionResourceSelfHelp - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.cs deleted file mode 100644 index 03df9f29a8e2..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.cs +++ /dev/null @@ -1,253 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Self Help Solution response. - public partial class SolutionResourceSelfHelp : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); - - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Content; } - - /// - /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Content = value; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelp()); set { {_property = value;} } } - - /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal.ReplacementMap { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMap; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMap = value; } - - /// Internal Acessors for Section - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal.Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Section; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Section = value; } - - /// Internal Acessors for SolutionId - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal.SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).SolutionId = value; } - - /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelpInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Title = value; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp _property; - - /// Solution result - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelp()); set => this._property = value; } - - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideo = value ?? null /* arrayOf */; } - - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideoGroup = value ?? null /* arrayOf */; } - - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapWebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapWebResult = value ?? null /* arrayOf */; } - - /// Gets the resource group name - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } - - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Section; } - - /// - /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).SolutionId; } - - /// - /// Azure Resource Manager metadata containing createdBy and modifiedBy information. - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)Property).Title; } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } - - /// Creates an new instance. - public SolutionResourceSelfHelp() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// Self Help Solution response. - public partial interface ISolutionResourceSelfHelp : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource - { - /// The HTML content that needs to be rendered and shown to customer. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The HTML content that needs to be rendered and shown to customer.", - SerializedName = @"content", - PossibleTypes = new [] { typeof(string) })] - string Content { get; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", - SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Group of Videos", - SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution AzureKB results", - SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"List of section object.", - SerializedName = @"sections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Section { get; } - /// - /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP", - SerializedName = @"solutionId", - PossibleTypes = new [] { typeof(string) })] - string SolutionId { get; } - /// The title. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The title.", - SerializedName = @"title", - PossibleTypes = new [] { typeof(string) })] - string Title { get; } - - } - /// Self Help Solution response. - internal partial interface ISolutionResourceSelfHelpInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal - { - /// The HTML content that needs to be rendered and shown to customer. - string Content { get; set; } - /// Solution result - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp Property { get; set; } - /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp ReplacementMap { get; set; } - /// - /// Video solutions, which have the power to engage the customer by stimulating their senses - /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } - /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } - /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } - /// List of section object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Section { get; set; } - /// - /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP - /// - string SolutionId { get; set; } - /// The title. - string Title { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.PowerShell.cs deleted file mode 100644 index 308064a80868..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.PowerShell.cs +++ /dev/null @@ -1,324 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; - - /// Troubleshooter step - [System.ComponentModel.TypeConverter(typeof(StepTypeConverter))] - public partial class Step - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new Step(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new Step(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal Step(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("AutomatedCheckResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult) content.GetValueForProperty("AutomatedCheckResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResult, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResultTypeConverter.ConvertFrom); - } - if (content.Contains("Error")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Description")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Description, global::System.Convert.ToString); - } - if (content.Contains("Guidance")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Guidance = (string) content.GetValueForProperty("Guidance",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Guidance, global::System.Convert.ToString); - } - if (content.Contains("ExecutionStatus")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatus = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus?) content.GetValueForProperty("ExecutionStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatus, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus.CreateFrom); - } - if (content.Contains("ExecutionStatusDescription")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatusDescription = (string) content.GetValueForProperty("ExecutionStatusDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatusDescription, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type.CreateFrom); - } - if (content.Contains("IsLastStep")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).IsLastStep = (bool?) content.GetValueForProperty("IsLastStep",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).IsLastStep, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("Input")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Input = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[]) content.GetValueForProperty("Input",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Input, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepInputTypeConverter.ConvertFrom)); - } - if (content.Contains("Insight")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.InsightTypeConverter.ConvertFrom)); - } - if (content.Contains("AutomatedCheckResultVersion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultVersion = (string) content.GetValueForProperty("AutomatedCheckResultVersion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultVersion, global::System.Convert.ToString); - } - if (content.Contains("AutomatedCheckResultStatus")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultStatus = (string) content.GetValueForProperty("AutomatedCheckResultStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultStatus, global::System.Convert.ToString); - } - if (content.Contains("AutomatedCheckResultsResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultsResult = (string) content.GetValueForProperty("AutomatedCheckResultsResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultsResult, global::System.Convert.ToString); - } - if (content.Contains("AutomatedCheckResultType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType?) content.GetValueForProperty("AutomatedCheckResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType.CreateFrom); - } - if (content.Contains("Code")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Code, global::System.Convert.ToString); - } - if (content.Contains("Message")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Message, global::System.Convert.ToString); - } - if (content.Contains("Target")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Target, global::System.Convert.ToString); - } - if (content.Contains("Detail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom)); - } - if (content.Contains("AdditionalInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfoTypeConverter.ConvertFrom)); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal Step(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("AutomatedCheckResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult) content.GetValueForProperty("AutomatedCheckResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResult, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResultTypeConverter.ConvertFrom); - } - if (content.Contains("Error")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Title")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Title, global::System.Convert.ToString); - } - if (content.Contains("Description")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Description, global::System.Convert.ToString); - } - if (content.Contains("Guidance")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Guidance = (string) content.GetValueForProperty("Guidance",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Guidance, global::System.Convert.ToString); - } - if (content.Contains("ExecutionStatus")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatus = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus?) content.GetValueForProperty("ExecutionStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatus, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus.CreateFrom); - } - if (content.Contains("ExecutionStatusDescription")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatusDescription = (string) content.GetValueForProperty("ExecutionStatusDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).ExecutionStatusDescription, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type.CreateFrom); - } - if (content.Contains("IsLastStep")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).IsLastStep = (bool?) content.GetValueForProperty("IsLastStep",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).IsLastStep, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("Input")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Input = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[]) content.GetValueForProperty("Input",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Input, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepInputTypeConverter.ConvertFrom)); - } - if (content.Contains("Insight")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.InsightTypeConverter.ConvertFrom)); - } - if (content.Contains("AutomatedCheckResultVersion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultVersion = (string) content.GetValueForProperty("AutomatedCheckResultVersion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultVersion, global::System.Convert.ToString); - } - if (content.Contains("AutomatedCheckResultStatus")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultStatus = (string) content.GetValueForProperty("AutomatedCheckResultStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultStatus, global::System.Convert.ToString); - } - if (content.Contains("AutomatedCheckResultsResult")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultsResult = (string) content.GetValueForProperty("AutomatedCheckResultsResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultsResult, global::System.Convert.ToString); - } - if (content.Contains("AutomatedCheckResultType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType?) content.GetValueForProperty("AutomatedCheckResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AutomatedCheckResultType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType.CreateFrom); - } - if (content.Contains("Code")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Code, global::System.Convert.ToString); - } - if (content.Contains("Message")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Message, global::System.Convert.ToString); - } - if (content.Contains("Target")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Target, global::System.Convert.ToString); - } - if (content.Contains("Detail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom)); - } - if (content.Contains("AdditionalInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfoTypeConverter.ConvertFrom)); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Troubleshooter step - [System.ComponentModel.TypeConverter(typeof(StepTypeConverter))] - public partial interface IStep - - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.cs deleted file mode 100644 index 10bef5e63245..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.cs +++ /dev/null @@ -1,188 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// Troubleshooter response. - public partial class TroubleshooterResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); - - /// - /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstanceProperties()); set { {_property = value;} } } - - /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).ProvisioningState = value; } - - /// Internal Acessors for Step - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal.Step { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).Step; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).Step = value; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } - - /// Client input parameters to run Troubleshooter Resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).Parameter = value ?? null /* model class */; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties _property; - - /// Troubleshooter Instance properties. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstanceProperties()); set => this._property = value; } - - /// Status of troubleshooter provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).ProvisioningState; } - - /// Gets the resource group name - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } - - /// Solution Id to identify single troubleshooter. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).SolutionId = value ?? null; } - - /// List of step object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Step { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)Property).Step; } - - /// - /// Azure Resource Manager metadata containing createdBy and modifiedBy information. - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } - - /// Creates an new instance. - public TroubleshooterResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// Troubleshooter response. - public partial interface ITroubleshooterResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource - { - /// Client input parameters to run Troubleshooter Resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Client input parameters to run Troubleshooter Resource", - SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } - /// Status of troubleshooter provisioning. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Status of troubleshooter provisioning.", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? ProvisioningState { get; } - /// Solution Id to identify single troubleshooter. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Solution Id to identify single troubleshooter.", - SerializedName = @"solutionId", - PossibleTypes = new [] { typeof(string) })] - string SolutionId { get; set; } - /// List of step object. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"List of step object.", - SerializedName = @"steps", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Step { get; } - - } - /// Troubleshooter response. - internal partial interface ITroubleshooterResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal - { - /// Client input parameters to run Troubleshooter Resource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } - /// Troubleshooter Instance properties. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties Property { get; set; } - /// Status of troubleshooter provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? ProvisioningState { get; set; } - /// Solution Id to identify single troubleshooter. - string SolutionId { get; set; } - /// List of step object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Step { get; set; } - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.cs deleted file mode 100644 index f4982a9ae5d5..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.cs +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; - - /// - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - /// - public partial class ProxyResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); - - /// - /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } - - /// - /// Azure Resource Manager metadata containing createdBy and modifiedBy information. - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } - - /// Creates an new instance. - public ProxyResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - public partial interface IProxyResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource - { - - } - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - internal partial interface IProxyResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal - { - - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.PowerShell.cs similarity index 72% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.PowerShell.cs index 6364f5dfc5f3..5b33447e3404 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class AutomatedCheckResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,25 +78,25 @@ internal AutomatedCheckResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Version")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Version, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Version, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Status, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("Result")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Result, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Result, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -111,47 +111,45 @@ internal AutomatedCheckResult(global::System.Management.Automation.PSObject cont // actually deserialize if (content.Contains("Version")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Version, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Version, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Status, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("Result")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Result, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Result, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AutomatedCheckResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AutomatedCheckResult(content); } @@ -161,7 +159,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.TypeConverter.cs index 89bf4ac21ebc..a2f03623f643 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.cs index 5e3120014513..3f7698dcbbcd 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Only for AutomatedStep type public partial class AutomatedCheckResult : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal { /// Backing field for property. @@ -28,11 +28,11 @@ public partial class AutomatedCheckResult : public string Status { get => this._status; set => this._status = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? _type; + private string _type; /// Type of Result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? Type { get => this._type; set => this._type = value; } + public string Type { get => this._type; set => this._type = value; } /// Backing field for property. private string _version; @@ -55,6 +55,9 @@ public partial interface IAutomatedCheckResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Insight Article Content", SerializedName = @"result", PossibleTypes = new [] { typeof(string) })] @@ -63,6 +66,9 @@ public partial interface IAutomatedCheckResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Status for automated check result", SerializedName = @"status", PossibleTypes = new [] { typeof(string) })] @@ -71,14 +77,21 @@ public partial interface IAutomatedCheckResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Type of Result.", SerializedName = @"type", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? Type { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Success", "Warning", "Error", "Information")] + string Type { get; set; } /// Version for automated check result [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Version for automated check result", SerializedName = @"version", PossibleTypes = new [] { typeof(string) })] @@ -94,7 +107,8 @@ internal partial interface IAutomatedCheckResultInternal /// Status for automated check result string Status { get; set; } /// Type of Result. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? Type { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Success", "Warning", "Error", "Information")] + string Type { get; set; } /// Version for automated check result string Version { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.json.cs index f5acc7c5bcb1..5be4cfd149f8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/AutomatedCheckResult.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/AutomatedCheckResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,21 +65,21 @@ internal AutomatedCheckResult(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtim { return; } - {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)Version;} - {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} - {_result = If( json?.PropertyT("result"), out var __jsonResult) ? (string)__jsonResult : (string)Result;} - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)_version;} + {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)_status;} + {_result = If( json?.PropertyT("result"), out var __jsonResult) ? (string)__jsonResult : (string)_result;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)_type;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new AutomatedCheckResult(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.PowerShell.cs similarity index 81% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.PowerShell.cs index 8f7d52dc94c0..eff266f71e6f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CheckNameAvailabilityRequest partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,17 +78,17 @@ internal CheckNameAvailabilityRequest(global::System.Collections.IDictionary con // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -103,37 +103,37 @@ internal CheckNameAvailabilityRequest(global::System.Management.Automation.PSObj // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CheckNameAvailabilityRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CheckNameAvailabilityRequest(content); } @@ -143,7 +143,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNam /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.TypeConverter.cs index a9419ad22cff..8976444abba1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.cs index 080a1b4e5dfa..78efe9b7f823 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// The check availability request body. public partial class CheckNameAvailabilityRequest : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequestInternal { /// Backing field for property. @@ -41,6 +41,9 @@ public partial interface ICheckNameAvailabilityRequest : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The name of the resource for which availability needs to be checked.", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] @@ -49,6 +52,9 @@ public partial interface ICheckNameAvailabilityRequest : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The resource type.", SerializedName = @"type", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.json.cs index b435a023396d..c7b947b35cd1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/CheckNameAvailabilityRequest.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityRequest.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,19 +65,19 @@ internal CheckNameAvailabilityRequest(Microsoft.Azure.PowerShell.Cmdlets.SelfHel { return; } - {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)_name;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)_type;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new CheckNameAvailabilityRequest(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.PowerShell.cs similarity index 74% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.PowerShell.cs index 9fe7d78deccf..d5cfad37715f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CheckNameAvailabilityResponse partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,21 +78,21 @@ internal CheckNameAvailabilityResponse(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("NameAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Reason")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Reason = (string) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Reason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Reason = (string) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Reason, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Message, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -107,43 +107,41 @@ internal CheckNameAvailabilityResponse(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("NameAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Reason")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Reason = (string) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Reason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Reason = (string) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Reason, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal)this).Message, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CheckNameAvailabilityResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CheckNameAvailabilityResponse(content); } @@ -153,7 +151,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.TypeConverter.cs index 4cc35a6889fd..8bd8746fe169 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.cs index 11365f1cc72e..a8d07069cdf8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Response for whether the requested resource name is available or not. public partial class CheckNameAvailabilityResponse : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponseInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponseInternal { /// Backing field for property. @@ -54,6 +54,9 @@ public partial interface ICheckNameAvailabilityResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Gets an error message explaining the 'reason' value with more details. This field is returned iif nameAvailable is false.", SerializedName = @"message", PossibleTypes = new [] { typeof(string) })] @@ -62,6 +65,9 @@ public partial interface ICheckNameAvailabilityResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Returns true or false depending on the availability of the name", SerializedName = @"nameAvailable", PossibleTypes = new [] { typeof(bool) })] @@ -72,6 +78,9 @@ public partial interface ICheckNameAvailabilityResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Reason for why value is not available. This field is returned if nameAvailable is false.", SerializedName = @"reason", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.json.cs index 3026e22447b5..64194ed05fe9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/CheckNameAvailabilityResponse.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/CheckNameAvailabilityResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,20 +65,20 @@ internal CheckNameAvailabilityResponse(Microsoft.Azure.PowerShell.Cmdlets.SelfHe { return; } - {_nameAvailable = If( json?.PropertyT("nameAvailable"), out var __jsonNameAvailable) ? (bool?)__jsonNameAvailable : NameAvailable;} - {_reason = If( json?.PropertyT("reason"), out var __jsonReason) ? (string)__jsonReason : (string)Reason;} - {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} + {_nameAvailable = If( json?.PropertyT("nameAvailable"), out var __jsonNameAvailable) ? (bool?)__jsonNameAvailable : _nameAvailable;} + {_reason = If( json?.PropertyT("reason"), out var __jsonReason) ? (string)__jsonReason : (string)_reason;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)_message;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new CheckNameAvailabilityResponse(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.PowerShell.cs similarity index 75% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.PowerShell.cs index a36a2f0bc635..5fe93e8ba930 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class ClassificationService partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,21 +78,21 @@ internal ClassificationService(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ServiceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ServiceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ServiceId, global::System.Convert.ToString); } if (content.Contains("DisplayName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).DisplayName = (string) content.GetValueForProperty("DisplayName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).DisplayName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).DisplayName = (string) content.GetValueForProperty("DisplayName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).DisplayName, global::System.Convert.ToString); } if (content.Contains("ResourceType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ResourceType = (string[]) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ResourceType, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ResourceType = (System.Collections.Generic.List) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ResourceType, __y => TypeConverterExtensions.SelectToList(__y, global::System.Convert.ToString)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -107,43 +107,41 @@ internal ClassificationService(global::System.Management.Automation.PSObject con // actually deserialize if (content.Contains("ServiceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ServiceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ServiceId, global::System.Convert.ToString); } if (content.Contains("DisplayName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).DisplayName = (string) content.GetValueForProperty("DisplayName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).DisplayName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).DisplayName = (string) content.GetValueForProperty("DisplayName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).DisplayName, global::System.Convert.ToString); } if (content.Contains("ResourceType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ResourceType = (string[]) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal)this).ResourceType, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ResourceType = (System.Collections.Generic.List) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal)this).ResourceType, __y => TypeConverterExtensions.SelectToList(__y, global::System.Convert.ToString)); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClassificationService(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClassificationService(content); } @@ -153,7 +151,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.TypeConverter.cs index 91885adc7083..5f9983b78d75 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.cs index ade015e977f6..7745e570427a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Service Classification result object. public partial class ClassificationService : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal { /// Backing field for property. @@ -21,17 +21,17 @@ public partial class ClassificationService : public string DisplayName { get => this._displayName; } /// Internal Acessors for DisplayName - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal.DisplayName { get => this._displayName; set { {_displayName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal.DisplayName { get => this._displayName; set { {_displayName = value;} } } /// Internal Acessors for ServiceId - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationServiceInternal.ServiceId { get => this._serviceId; set { {_serviceId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationServiceInternal.ServiceId { get => this._serviceId; set { {_serviceId = value;} } } /// Backing field for property. - private string[] _resourceType; + private System.Collections.Generic.List _resourceType; /// List of applicable ARM resource types for this service. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string[] ResourceType { get => this._resourceType; set => this._resourceType = value; } + public System.Collections.Generic.List ResourceType { get => this._resourceType; set => this._resourceType = value; } /// Backing field for property. private string _serviceId; @@ -54,6 +54,9 @@ public partial interface IClassificationService : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Localized name of the azure service.", SerializedName = @"displayName", PossibleTypes = new [] { typeof(string) })] @@ -62,14 +65,20 @@ public partial interface IClassificationService : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"List of applicable ARM resource types for this service.", SerializedName = @"resourceTypes", PossibleTypes = new [] { typeof(string) })] - string[] ResourceType { get; set; } + System.Collections.Generic.List ResourceType { get; set; } /// Azure resource Id of the service. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Azure resource Id of the service.", SerializedName = @"serviceId", PossibleTypes = new [] { typeof(string) })] @@ -83,7 +92,7 @@ internal partial interface IClassificationServiceInternal /// Localized name of the azure service. string DisplayName { get; set; } /// List of applicable ARM resource types for this service. - string[] ResourceType { get; set; } + System.Collections.Generic.List ResourceType { get; set; } /// Azure resource Id of the service. string ServiceId { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.json.cs similarity index 90% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.json.cs index 398766a42f34..e18a56c8f915 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ClassificationService.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ClassificationService.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,20 +65,20 @@ internal ClassificationService(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runti { return; } - {_serviceId = If( json?.PropertyT("serviceId"), out var __jsonServiceId) ? (string)__jsonServiceId : (string)ServiceId;} - {_displayName = If( json?.PropertyT("displayName"), out var __jsonDisplayName) ? (string)__jsonDisplayName : (string)DisplayName;} - {_resourceType = If( json?.PropertyT("resourceTypes"), out var __jsonResourceTypes) ? If( __jsonResourceTypes as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : ResourceType;} + {_serviceId = If( json?.PropertyT("serviceId"), out var __jsonServiceId) ? (string)__jsonServiceId : (string)_serviceId;} + {_displayName = If( json?.PropertyT("displayName"), out var __jsonDisplayName) ? (string)__jsonDisplayName : (string)_displayName;} + {_resourceType = If( json?.PropertyT("resourceTypes"), out var __jsonResourceTypes) ? If( __jsonResourceTypes as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : _resourceType;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ClassificationService(json) : null; } @@ -102,11 +102,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._serviceId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._serviceId.ToString()) : null, "serviceId" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._displayName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._displayName.ToString()) : null, "displayName" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.PowerShell.cs similarity index 75% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.PowerShell.cs index a1fe318a3620..b1d9cdff49a2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class ContinueRequestBody partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,17 +78,17 @@ internal ContinueRequestBody(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("StepId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).StepId = (string) content.GetValueForProperty("StepId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).StepId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).StepId = (string) content.GetValueForProperty("StepId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).StepId, global::System.Convert.ToString); } if (content.Contains("Response")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).Response = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).Response, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResponseTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).Response = (System.Collections.Generic.List) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).Response, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResponseTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -103,39 +103,37 @@ internal ContinueRequestBody(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("StepId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).StepId = (string) content.GetValueForProperty("StepId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).StepId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).StepId = (string) content.GetValueForProperty("StepId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).StepId, global::System.Convert.ToString); } if (content.Contains("Response")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).Response = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal)this).Response, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResponseTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).Response = (System.Collections.Generic.List) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal)this).Response, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResponseTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ContinueRequestBody(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ContinueRequestBody(content); } @@ -145,7 +143,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.TypeConverter.cs index ade07150ac0d..4aacd6487bae 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.cs similarity index 68% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.cs index c381612687bc..ef944fb73db4 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.cs @@ -3,21 +3,21 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Troubleshooter ContinueRequest body. public partial class ContinueRequestBody : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBodyInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBodyInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] _response; + private System.Collections.Generic.List _response; [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] Response { get => this._response; set => this._response = value; } + public System.Collections.Generic.List Response { get => this._response; set => this._response = value; } /// Backing field for property. private string _stepId; @@ -39,14 +39,20 @@ public partial interface IContinueRequestBody : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"responses", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] Response { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse) })] + System.Collections.Generic.List Response { get; set; } /// Unique id of the result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Unique id of the result.", SerializedName = @"stepId", PossibleTypes = new [] { typeof(string) })] @@ -57,7 +63,7 @@ public partial interface IContinueRequestBody : internal partial interface IContinueRequestBodyInternal { - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] Response { get; set; } + System.Collections.Generic.List Response { get; set; } /// Unique id of the result. string StepId { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.json.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.json.cs index 0c14b2abc534..028719d93e15 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ContinueRequestBody.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ContinueRequestBody.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,19 +65,19 @@ internal ContinueRequestBody(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime { return; } - {_stepId = If( json?.PropertyT("stepId"), out var __jsonStepId) ? (string)__jsonStepId : (string)StepId;} - {_response = If( json?.PropertyT("responses"), out var __jsonResponses) ? If( __jsonResponses as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResponse.FromJson(__u) )) ))() : null : Response;} + {_stepId = If( json?.PropertyT("stepId"), out var __jsonStepId) ? (string)__jsonStepId : (string)_stepId;} + {_response = If( json?.PropertyT("responses"), out var __jsonResponses) ? If( __jsonResponses as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResponse.FromJson(__u) )) ))() : null : _response;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ContinueRequestBody(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.PowerShell.cs similarity index 60% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.PowerShell.cs index e953d7fa25b4..e5d95eb1d2b6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class Diagnostic partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Diagnostic(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Diagnostic(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,41 +104,41 @@ internal Diagnostic(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ErrorTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorTypeConverter.ConvertFrom); } if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("Insight")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.InsightTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.InsightTypeConverter.ConvertFrom)); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ErrorTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -153,35 +153,35 @@ internal Diagnostic(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ErrorTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorTypeConverter.ConvertFrom); } if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("Insight")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.InsightTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.InsightTypeConverter.ConvertFrom)); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ErrorTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -191,7 +191,7 @@ internal Diagnostic(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.TypeConverter.cs index d908c73e8516..21ee4820443c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.cs similarity index 66% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.cs index 290c61a09277..175d456e0d2a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.cs @@ -3,57 +3,57 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Properties returned with in an insight. public partial class Diagnostic : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal { /// /// Service specific error code which serves as the substatus for the HTTP error code. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Code; } + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Code; } /// /// An array of additional nested error response info objects, as described by this contract. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Detail = value ?? null /* arrayOf */; } + public System.Collections.Generic.List Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Detail = value ?? null /* arrayOf */; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError _error; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError _error; /// Error definition. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Error()); set => this._error = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Error()); set => this._error = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] _insight; + private System.Collections.Generic.List _insight; /// The problems (if any) detected by this insight. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get => this._insight; set => this._insight = value; } + public System.Collections.Generic.List Insight { get => this._insight; set => this._insight = value; } /// Description of the error. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Message; } + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Message; } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Code = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Code = value ?? null; } /// Internal Acessors for Error - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Error()); set { {_error = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Error()); set { {_error = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Message = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Message = value ?? null; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Type = value ?? null; } /// Backing field for property. private string _solutionId; @@ -63,17 +63,17 @@ public partial class Diagnostic : public string SolutionId { get => this._solutionId; set => this._solutionId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? _status; + private string _status; /// Denotes the status of the diagnostic resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? Status { get => this._status; set => this._status = value; } + public string Status { get => this._status; set => this._status = value; } /// /// Service specific error type which serves as additional context for the error herein. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)Error).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)Error).Type; } /// Creates an new instance. public Diagnostic() @@ -91,6 +91,9 @@ public partial interface IDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Service specific error code which serves as the substatus for the HTTP error code.", SerializedName = @"code", PossibleTypes = new [] { typeof(string) })] @@ -101,22 +104,31 @@ public partial interface IDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"An array of additional nested error response info objects, as described by this contract.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] Detail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError) })] + System.Collections.Generic.List Detail { get; set; } /// The problems (if any) detected by this insight. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The problems (if any) detected by this insight.", SerializedName = @"insights", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight) })] + System.Collections.Generic.List Insight { get; set; } /// Description of the error. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Description of the error.", SerializedName = @"message", PossibleTypes = new [] { typeof(string) })] @@ -125,6 +137,9 @@ public partial interface IDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -133,16 +148,23 @@ public partial interface IDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Denotes the status of the diagnostic resource.", SerializedName = @"status", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? Status { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Failed", "MissingInputs", "Running", "Succeeded", "Timeout")] + string Status { get; set; } /// /// Service specific error type which serves as additional context for the error herein. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Service specific error type which serves as additional context for the error herein.", SerializedName = @"type", PossibleTypes = new [] { typeof(string) })] @@ -160,17 +182,18 @@ internal partial interface IDiagnosticInternal /// /// An array of additional nested error response info objects, as described by this contract. /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] Detail { get; set; } + System.Collections.Generic.List Detail { get; set; } /// Error definition. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError Error { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError Error { get; set; } /// The problems (if any) detected by this insight. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get; set; } + System.Collections.Generic.List Insight { get; set; } /// Description of the error. string Message { get; set; } /// Solution Id string SolutionId { get; set; } /// Denotes the status of the diagnostic resource. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? Status { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Failed", "MissingInputs", "Running", "Succeeded", "Timeout")] + string Status { get; set; } /// /// Service specific error type which serves as additional context for the error herein. /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.json.cs index d8b61859b259..af54d7c5cb03 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Diagnostic.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Diagnostic.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,21 +65,19 @@ internal Diagnostic(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Jso { return; } - {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Error.FromJson(__jsonError) : Error;} - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} - {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Insight.FromJson(__u) )) ))() : null : Insight;} + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Error.FromJson(__jsonError) : _error;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)_status;} + {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Insight.FromJson(__u) )) ))() : null : _insight;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Diagnostic(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.PowerShell.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.PowerShell.cs index f2311e8c3121..2f72c55f6952 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,35 +63,33 @@ public partial class DiagnosticInvocation partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiagnosticInvocation(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiagnosticInvocation(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,17 +104,17 @@ internal DiagnosticInvocation(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("AdditionalParameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).AdditionalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters) content.GetValueForProperty("AdditionalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).AdditionalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).AdditionalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters) content.GetValueForProperty("AdditionalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).AdditionalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParametersTypeConverter.ConvertFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -131,11 +129,11 @@ internal DiagnosticInvocation(global::System.Management.Automation.PSObject cont // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("AdditionalParameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).AdditionalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters) content.GetValueForProperty("AdditionalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal)this).AdditionalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).AdditionalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters) content.GetValueForProperty("AdditionalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal)this).AdditionalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParametersTypeConverter.ConvertFrom); } AfterDeserializePSObject(content); } @@ -145,7 +143,7 @@ internal DiagnosticInvocation(global::System.Management.Automation.PSObject cont /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.TypeConverter.cs index e3fad3bca9e4..91b8a75f42af 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.cs similarity index 72% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.cs index 63096519d916..4d9a68e4d166 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solution Invocation with additional params needed for invocation. public partial class DiagnosticInvocation : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters _additionalParameter; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters _additionalParameter; /// Additional parameters required to invoke the solutionId. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters AdditionalParameter { get => (this._additionalParameter = this._additionalParameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParameters()); set => this._additionalParameter = value; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters AdditionalParameter { get => (this._additionalParameter = this._additionalParameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParameters()); set => this._additionalParameter = value; } /// Backing field for property. private string _solutionId; @@ -41,14 +41,20 @@ public partial interface IDiagnosticInvocation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Additional parameters required to invoke the solutionId.", SerializedName = @"additionalParameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters AdditionalParameter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters AdditionalParameter { get; set; } /// Solution Id to invoke. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id to invoke.", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -60,7 +66,7 @@ internal partial interface IDiagnosticInvocationInternal { /// Additional parameters required to invoke the solutionId. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters AdditionalParameter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters AdditionalParameter { get; set; } /// Solution Id to invoke. string SolutionId { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.json.cs index cd78ba960d84..7a44c76e5848 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocation.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocation.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,19 +65,19 @@ internal DiagnosticInvocation(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtim { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_additionalParameter = If( json?.PropertyT("additionalParameters"), out var __jsonAdditionalParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParameters.FromJson(__jsonAdditionalParameters) : AdditionalParameter;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_additionalParameter = If( json?.PropertyT("additionalParameters"), out var __jsonAdditionalParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParameters.FromJson(__jsonAdditionalParameters) : _additionalParameter;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiagnosticInvocation(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.PowerShell.cs index 20e4763aa4ff..c45b61981488 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,35 +63,35 @@ public partial class DiagnosticInvocationAdditionalParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiagnosticInvocationAdditionalParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiagnosticInvocationAdditionalParameters(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -110,7 +110,7 @@ internal DiagnosticInvocationAdditionalParameters(global::System.Collections.IDi } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -136,7 +136,7 @@ internal DiagnosticInvocationAdditionalParameters(global::System.Management.Auto /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.TypeConverter.cs index ad0d010c2f45..44182f2f9c3e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -110,14 +110,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.cs index 6f04e661bdab..a9d031860afd 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Additional parameters required to invoke the solutionId. public partial class DiagnosticInvocationAdditionalParameters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParametersInternal { /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.dictionary.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.dictionary.cs index 874e86e62817..90fe2caa52e4 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationAdditionalParameters source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationAdditionalParameters source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.json.cs index 2cc87762c7bf..9487f5ef94e4 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticInvocationAdditionalParameters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticInvocationAdditionalParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -71,13 +71,13 @@ internal DiagnosticInvocationAdditionalParameters(Microsoft.Azure.PowerShell.Cmd } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiagnosticInvocationAdditionalParameters(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.PowerShell.cs new file mode 100644 index 000000000000..38585e72f90c --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.PowerShell.cs @@ -0,0 +1,284 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Diagnostic resource + [System.ComponentModel.TypeConverter(typeof(DiagnosticResourceTypeConverter))] + public partial class DiagnosticResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DiagnosticResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DiagnosticResource(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DiagnosticResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("GlobalParameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); + } + if (content.Contains("Insight")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationTypeConverter.ConvertFrom)); + } + if (content.Contains("AcceptedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).AcceptedAt, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Diagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Diagnostic = (System.Collections.Generic.List) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DiagnosticResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("GlobalParameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); + } + if (content.Contains("Insight")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationTypeConverter.ConvertFrom)); + } + if (content.Contains("AcceptedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).AcceptedAt, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Diagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Diagnostic = (System.Collections.Generic.List) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Diagnostic resource + [System.ComponentModel.TypeConverter(typeof(DiagnosticResourceTypeConverter))] + public partial interface IDiagnosticResource + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.TypeConverter.cs index 350170bd72b9..b106d4321db2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.cs new file mode 100644 index 000000000000..f2e605825e21 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.cs @@ -0,0 +1,249 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Diagnostic resource + public partial class DiagnosticResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); + + /// Diagnostic Request Accepted time. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string AcceptedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).AcceptedAt; } + + /// Array of Diagnostics. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Diagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).Diagnostic; } + + /// + /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics + /// results + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).GlobalParameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).GlobalParameter = value ?? null /* model class */; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } + + /// SolutionIds that are needed to be invoked. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Insight { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).Insight; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).Insight = value ?? null /* arrayOf */; } + + /// Internal Acessors for AcceptedAt + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal.AcceptedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).AcceptedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).AcceptedAt = value ?? null; } + + /// Internal Acessors for Diagnostic + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal.Diagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).Diagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).Diagnostic = value ?? null /* arrayOf */; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourceProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).ProvisioningState = value ?? null; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties _property; + + /// Diagnostic Resource properties. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourceProperties()); set => this._property = value; } + + /// Status of diagnostic provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)Property).ProvisioningState; } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } + + /// Creates an new instance. + public DiagnosticResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); + } + } + /// Diagnostic resource + public partial interface IDiagnosticResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource + { + /// Diagnostic Request Accepted time. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Diagnostic Request Accepted time.", + SerializedName = @"acceptedAt", + PossibleTypes = new [] { typeof(string) })] + string AcceptedAt { get; } + /// Array of Diagnostics. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Array of Diagnostics.", + SerializedName = @"diagnostics", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic) })] + System.Collections.Generic.List Diagnostic { get; } + /// + /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics + /// results + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results", + SerializedName = @"globalParameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } + /// SolutionIds that are needed to be invoked. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"SolutionIds that are needed to be invoked.", + SerializedName = @"insights", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation) })] + System.Collections.Generic.List Insight { get; set; } + /// Status of diagnostic provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Status of diagnostic provisioning.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } + + } + /// Diagnostic resource + internal partial interface IDiagnosticResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal + { + /// Diagnostic Request Accepted time. + string AcceptedAt { get; set; } + /// Array of Diagnostics. + System.Collections.Generic.List Diagnostic { get; set; } + /// + /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics + /// results + /// + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } + /// SolutionIds that are needed to be invoked. + System.Collections.Generic.List Insight { get; set; } + /// Diagnostic Resource properties. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties Property { get; set; } + /// Status of diagnostic provisioning. + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.json.cs index 81edf0304686..bc5e941c0011 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,19 +65,19 @@ internal DiagnosticResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime. { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourceProperties.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourceProperties.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiagnosticResource(json) : null; } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.PowerShell.cs similarity index 60% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.PowerShell.cs index 4e2e18f23d1e..66fc7181de65 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,35 +63,33 @@ public partial class DiagnosticResourceProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiagnosticResourceProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiagnosticResourceProperties(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,29 +104,29 @@ internal DiagnosticResourceProperties(global::System.Collections.IDictionary con // actually deserialize if (content.Contains("GlobalParameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); } if (content.Contains("Insight")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationTypeConverter.ConvertFrom)); } if (content.Contains("AcceptedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).AcceptedAt, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).AcceptedAt, global::System.Convert.ToString); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("Diagnostic")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Diagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Diagnostic = (System.Collections.Generic.List) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -143,23 +141,23 @@ internal DiagnosticResourceProperties(global::System.Management.Automation.PSObj // actually deserialize if (content.Contains("GlobalParameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).GlobalParameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) content.GetValueForProperty("GlobalParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).GlobalParameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParametersTypeConverter.ConvertFrom); } if (content.Contains("Insight")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocationTypeConverter.ConvertFrom)); } if (content.Contains("AcceptedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).AcceptedAt, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).AcceptedAt = (string) content.GetValueForProperty("AcceptedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).AcceptedAt, global::System.Convert.ToString); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("Diagnostic")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Diagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Diagnostic = (System.Collections.Generic.List) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -169,7 +167,7 @@ internal DiagnosticResourceProperties(global::System.Management.Automation.PSObj /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.TypeConverter.cs index a05d7a989e12..1ca20c77a4a8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.cs similarity index 59% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.cs index 828dbb348b0b..da08fd284d1e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Diagnostic resource properties. public partial class DiagnosticResourceProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal { /// Backing field for property. @@ -21,44 +21,44 @@ public partial class DiagnosticResourceProperties : public string AcceptedAt { get => this._acceptedAt; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] _diagnostic; + private System.Collections.Generic.List _diagnostic; /// Array of Diagnostics. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Diagnostic { get => this._diagnostic; } + public System.Collections.Generic.List Diagnostic { get => this._diagnostic; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters _globalParameter; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters _globalParameter; /// /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics /// results /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => (this._globalParameter = this._globalParameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParameters()); set => this._globalParameter = value; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => (this._globalParameter = this._globalParameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParameters()); set => this._globalParameter = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] _insight; + private System.Collections.Generic.List _insight; /// SolutionIds that are needed to be invoked. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get => this._insight; set => this._insight = value; } + public System.Collections.Generic.List Insight { get => this._insight; set => this._insight = value; } /// Internal Acessors for AcceptedAt - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal.AcceptedAt { get => this._acceptedAt; set { {_acceptedAt = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal.AcceptedAt { get => this._acceptedAt; set { {_acceptedAt = value;} } } /// Internal Acessors for Diagnostic - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal.Diagnostic { get => this._diagnostic; set { {_diagnostic = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal.Diagnostic { get => this._diagnostic; set { {_diagnostic = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? _provisioningState; + private string _provisioningState; /// Status of diagnostic provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? ProvisioningState { get => this._provisioningState; } + public string ProvisioningState { get => this._provisioningState; } /// Creates an new instance. public DiagnosticResourceProperties() @@ -74,6 +74,9 @@ public partial interface IDiagnosticResourceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Diagnostic Request Accepted time.", SerializedName = @"acceptedAt", PossibleTypes = new [] { typeof(string) })] @@ -82,10 +85,13 @@ public partial interface IDiagnosticResourceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Array of Diagnostics.", SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Diagnostic { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic) })] + System.Collections.Generic.List Diagnostic { get; } /// /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics /// results @@ -93,26 +99,36 @@ public partial interface IDiagnosticResourceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results", SerializedName = @"globalParameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } /// SolutionIds that are needed to be invoked. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"SolutionIds that are needed to be invoked.", SerializedName = @"insights", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation) })] + System.Collections.Generic.List Insight { get; set; } /// Status of diagnostic provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Status of diagnostic provisioning.", SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? ProvisioningState { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } } /// Diagnostic resource properties. @@ -122,16 +138,17 @@ internal partial interface IDiagnosticResourcePropertiesInternal /// Diagnostic Request Accepted time. string AcceptedAt { get; set; } /// Array of Diagnostics. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[] Diagnostic { get; set; } + System.Collections.Generic.List Diagnostic { get; set; } /// /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics /// results /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get; set; } /// SolutionIds that are needed to be invoked. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get; set; } + System.Collections.Generic.List Insight { get; set; } /// Status of diagnostic provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState? ProvisioningState { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.json.cs similarity index 84% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.json.cs index ff2500971f78..34d7bc6a5bcb 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourceProperties.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourceProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,22 +65,22 @@ internal DiagnosticResourceProperties(Microsoft.Azure.PowerShell.Cmdlets.SelfHel { return; } - {_globalParameter = If( json?.PropertyT("globalParameters"), out var __jsonGlobalParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParameters.FromJson(__jsonGlobalParameters) : GlobalParameter;} - {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticInvocation.FromJson(__u) )) ))() : null : Insight;} - {_acceptedAt = If( json?.PropertyT("acceptedAt"), out var __jsonAcceptedAt) ? (string)__jsonAcceptedAt : (string)AcceptedAt;} - {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} - {_diagnostic = If( json?.PropertyT("diagnostics"), out var __jsonDiagnostics) ? If( __jsonDiagnostics as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Diagnostic.FromJson(__p) )) ))() : null : Diagnostic;} + {_globalParameter = If( json?.PropertyT("globalParameters"), out var __jsonGlobalParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParameters.FromJson(__jsonGlobalParameters) : _globalParameter;} + {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticInvocation.FromJson(__u) )) ))() : null : _insight;} + {_acceptedAt = If( json?.PropertyT("acceptedAt"), out var __jsonAcceptedAt) ? (string)__jsonAcceptedAt : (string)_acceptedAt;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)_provisioningState;} + {_diagnostic = If( json?.PropertyT("diagnostics"), out var __jsonDiagnostics) ? If( __jsonDiagnostics as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Diagnostic.FromJson(__p) )) ))() : null : _diagnostic;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiagnosticResourceProperties(json) : null; } @@ -114,15 +114,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( } container.Add("insights",__w); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._acceptedAt)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._acceptedAt.ToString()) : null, "acceptedAt" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._diagnostic) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs index 237dc2b09089..24f9fbba98a4 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -66,35 +66,35 @@ public partial class DiagnosticResourcePropertiesGlobalParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiagnosticResourcePropertiesGlobalParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiagnosticResourcePropertiesGlobalParameters(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,7 +113,7 @@ internal DiagnosticResourcePropertiesGlobalParameters(global::System.Collections } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -139,7 +139,7 @@ internal DiagnosticResourcePropertiesGlobalParameters(global::System.Management. /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs index 2c51f3818db3..2171619c6ea9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -110,14 +110,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.cs similarity index 81% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.cs index 40c7e611fa73..356511d6ed4a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -12,8 +12,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview /// results /// public partial class DiagnosticResourcePropertiesGlobalParameters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParametersInternal { /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs index 099cb38beb4e..56dcb6f35c92 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResourcePropertiesGlobalParameters source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResourcePropertiesGlobalParameters source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.json.cs index dcb3e9e8ac0a..47ed80134f22 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiagnosticResourcePropertiesGlobalParameters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiagnosticResourcePropertiesGlobalParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -75,13 +75,13 @@ internal DiagnosticResourcePropertiesGlobalParameters(Microsoft.Azure.PowerShell } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiagnosticResourcePropertiesGlobalParameters(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.PowerShell.cs similarity index 72% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.PowerShell.cs index 493becfc6035..78316913232a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,35 +63,33 @@ public partial class DiscoveryNlpRequest partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiscoveryNlpRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiscoveryNlpRequest(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,25 +104,25 @@ internal DiscoveryNlpRequest(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("IssueSummary")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).IssueSummary = (string) content.GetValueForProperty("IssueSummary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).IssueSummary, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).IssueSummary = (string) content.GetValueForProperty("IssueSummary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).IssueSummary, global::System.Convert.ToString); } if (content.Contains("ResourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ResourceId, global::System.Convert.ToString); } if (content.Contains("ServiceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ServiceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ServiceId, global::System.Convert.ToString); } if (content.Contains("AdditionalContext")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).AdditionalContext = (string) content.GetValueForProperty("AdditionalContext",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).AdditionalContext, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).AdditionalContext = (string) content.GetValueForProperty("AdditionalContext",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).AdditionalContext, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -139,19 +137,19 @@ internal DiscoveryNlpRequest(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("IssueSummary")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).IssueSummary = (string) content.GetValueForProperty("IssueSummary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).IssueSummary, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).IssueSummary = (string) content.GetValueForProperty("IssueSummary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).IssueSummary, global::System.Convert.ToString); } if (content.Contains("ResourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ResourceId, global::System.Convert.ToString); } if (content.Contains("ServiceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).ServiceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).ServiceId, global::System.Convert.ToString); } if (content.Contains("AdditionalContext")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).AdditionalContext = (string) content.GetValueForProperty("AdditionalContext",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal)this).AdditionalContext, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).AdditionalContext = (string) content.GetValueForProperty("AdditionalContext",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal)this).AdditionalContext, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -161,7 +159,7 @@ internal DiscoveryNlpRequest(global::System.Management.Automation.PSObject conte /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.TypeConverter.cs index ce162f38d371..e8c122f9f721 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.cs index 207c51dec24c..e77a5aee78f1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Discover NLP request. public partial class DiscoveryNlpRequest : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequestInternal { /// Backing field for property. @@ -58,6 +58,9 @@ public partial interface IDiscoveryNlpRequest : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Additional information in the form of a string.", SerializedName = @"additionalContext", PossibleTypes = new [] { typeof(string) })] @@ -66,6 +69,9 @@ public partial interface IDiscoveryNlpRequest : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Describe the issue with the affected resource.", SerializedName = @"issueSummary", PossibleTypes = new [] { typeof(string) })] @@ -74,6 +80,9 @@ public partial interface IDiscoveryNlpRequest : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Provide resourceId of affected resource", SerializedName = @"resourceId", PossibleTypes = new [] { typeof(string) })] @@ -85,6 +94,9 @@ public partial interface IDiscoveryNlpRequest : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response", SerializedName = @"serviceId", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.json.cs index b2d2900211c8..b7a73a464aee 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpRequest.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpRequest.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,21 +65,21 @@ internal DiscoveryNlpRequest(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime { return; } - {_issueSummary = If( json?.PropertyT("issueSummary"), out var __jsonIssueSummary) ? (string)__jsonIssueSummary : (string)IssueSummary;} - {_resourceId = If( json?.PropertyT("resourceId"), out var __jsonResourceId) ? (string)__jsonResourceId : (string)ResourceId;} - {_serviceId = If( json?.PropertyT("serviceId"), out var __jsonServiceId) ? (string)__jsonServiceId : (string)ServiceId;} - {_additionalContext = If( json?.PropertyT("additionalContext"), out var __jsonAdditionalContext) ? (string)__jsonAdditionalContext : (string)AdditionalContext;} + {_issueSummary = If( json?.PropertyT("issueSummary"), out var __jsonIssueSummary) ? (string)__jsonIssueSummary : (string)_issueSummary;} + {_resourceId = If( json?.PropertyT("resourceId"), out var __jsonResourceId) ? (string)__jsonResourceId : (string)_resourceId;} + {_serviceId = If( json?.PropertyT("serviceId"), out var __jsonServiceId) ? (string)__jsonServiceId : (string)_serviceId;} + {_additionalContext = If( json?.PropertyT("additionalContext"), out var __jsonAdditionalContext) ? (string)__jsonAdditionalContext : (string)_additionalContext;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiscoveryNlpRequest(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.PowerShell.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.PowerShell.cs index 236f747354f4..feca526ae365 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,35 +63,33 @@ public partial class DiscoveryNlpResponse partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiscoveryNlpResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiscoveryNlpResponse(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,13 +104,13 @@ internal DiscoveryNlpResponse(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponseInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionNlpMetadataResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponseInternal)this).Value = (System.Collections.Generic.List) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionNlpMetadataResourceTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -127,7 +125,7 @@ internal DiscoveryNlpResponse(global::System.Management.Automation.PSObject cont // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponseInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionNlpMetadataResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponseInternal)this).Value = (System.Collections.Generic.List) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionNlpMetadataResourceTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -137,7 +135,7 @@ internal DiscoveryNlpResponse(global::System.Management.Automation.PSObject cont /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.TypeConverter.cs index 2010d83bc29c..a3ae436f0f24 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.cs similarity index 62% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.cs index f1f695d2b414..de15bb8e185c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Discovery Nlp response. public partial class DiscoveryNlpResponse : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponseInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponseInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource[] _value; + private System.Collections.Generic.List _value; /// The list of solution metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource[] Value { get => this._value; set => this._value = value; } + public System.Collections.Generic.List Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DiscoveryNlpResponse() @@ -34,10 +34,13 @@ public partial interface IDiscoveryNlpResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The list of solution metadata.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource) })] + System.Collections.Generic.List Value { get; set; } } /// Discovery Nlp response. @@ -45,7 +48,7 @@ internal partial interface IDiscoveryNlpResponseInternal { /// The list of solution metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource[] Value { get; set; } + System.Collections.Generic.List Value { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.json.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.json.cs index 2877c42c5e61..2d3878bf2b92 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryNlpResponse.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryNlpResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,18 +65,18 @@ internal DiscoveryNlpResponse(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtim { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionNlpMetadataResource.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionNlpMetadataResource.FromJson(__u) )) ))() : null : _value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiscoveryNlpResponse(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.PowerShell.cs similarity index 75% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.PowerShell.cs index f03b7470da41..0436724fa488 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class DiscoveryResponse partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiscoveryResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiscoveryResponse(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,17 +104,17 @@ internal DiscoveryResponse(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).Value = (System.Collections.Generic.List) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataResourceTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -129,11 +129,11 @@ internal DiscoveryResponse(global::System.Management.Automation.PSObject content // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).Value = (System.Collections.Generic.List) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).Value, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataResourceTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -143,7 +143,7 @@ internal DiscoveryResponse(global::System.Management.Automation.PSObject content /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.TypeConverter.cs index f031e5fce8de..6f8ca1709a59 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.cs similarity index 71% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.cs index 5710cf617b39..3a7cc1a8dd59 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Discovery response. public partial class DiscoveryResponse : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponseInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponseInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class DiscoveryResponse : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource[] _value; + private System.Collections.Generic.List _value; /// The list of metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource[] Value { get => this._value; set => this._value = value; } + public System.Collections.Generic.List Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DiscoveryResponse() @@ -41,6 +41,9 @@ public partial interface IDiscoveryResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The link used to get the next page of solution metadata.", SerializedName = @"nextLink", PossibleTypes = new [] { typeof(string) })] @@ -49,10 +52,13 @@ public partial interface IDiscoveryResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The list of metadata.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource) })] + System.Collections.Generic.List Value { get; set; } } /// Discovery response. @@ -62,7 +68,7 @@ internal partial interface IDiscoveryResponseInternal /// The link used to get the next page of solution metadata. string NextLink { get; set; } /// The list of metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource[] Value { get; set; } + System.Collections.Generic.List Value { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.json.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.json.cs index 0c919f7f8210..c6a6fb2b5b83 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/DiscoveryResponse.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/DiscoveryResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,19 +65,19 @@ internal DiscoveryResponse(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.J { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataResource.FromJson(__u) )) ))() : null : Value;} - {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataResource.FromJson(__u) )) ))() : null : _value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)_nextLink;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new DiscoveryResponse(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.PowerShell.cs similarity index 72% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.PowerShell.cs index d2a00537f318..7e77c66773fe 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class Error partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Error(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Error(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,25 +104,25 @@ internal Error(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ErrorTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -137,19 +137,19 @@ internal Error(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ErrorTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -159,7 +159,7 @@ internal Error(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.TypeConverter.cs index f800e79e8ea3..72306bcb980e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.cs index 4bc4267486a5..23fbf8a68095 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Error definition. public partial class Error : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal { /// Backing field for property. @@ -23,13 +23,13 @@ public partial class Error : public string Code { get => this._code; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] _detail; + private System.Collections.Generic.List _detail; /// /// An array of additional nested error response info objects, as described by this contract. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] Detail { get => this._detail; set => this._detail = value; } + public System.Collections.Generic.List Detail { get => this._detail; set => this._detail = value; } /// Backing field for property. private string _message; @@ -39,13 +39,13 @@ public partial class Error : public string Message { get => this._message; } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal.Code { get => this._code; set { {_code = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal.Code { get => this._code; set { {_code = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal.Message { get => this._message; set { {_message = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal.Message { get => this._message; set { {_message = value;} } } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IErrorInternal.Type { get => this._type; set { {_type = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorInternal.Type { get => this._type; set { {_type = value;} } } /// Backing field for property. private string _type; @@ -72,6 +72,9 @@ public partial interface IError : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Service specific error code which serves as the substatus for the HTTP error code.", SerializedName = @"code", PossibleTypes = new [] { typeof(string) })] @@ -82,14 +85,20 @@ public partial interface IError : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"An array of additional nested error response info objects, as described by this contract.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] Detail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError) })] + System.Collections.Generic.List Detail { get; set; } /// Description of the error. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Description of the error.", SerializedName = @"message", PossibleTypes = new [] { typeof(string) })] @@ -100,6 +109,9 @@ public partial interface IError : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Service specific error type which serves as additional context for the error herein.", SerializedName = @"type", PossibleTypes = new [] { typeof(string) })] @@ -117,7 +129,7 @@ internal partial interface IErrorInternal /// /// An array of additional nested error response info objects, as described by this contract. /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[] Detail { get; set; } + System.Collections.Generic.List Detail { get; set; } /// Description of the error. string Message { get; set; } /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.json.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.json.cs index 6622e9eea563..f1827c7fc42f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Error.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Error.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,21 +65,19 @@ internal Error(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObje { return; } - {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} - {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Error.FromJson(__u) )) ))() : null : Detail;} + {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)_code;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)_type;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)_message;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Error.FromJson(__u) )) ))() : null : _detail;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Error(json) : null; } @@ -103,15 +101,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.PowerShell.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.PowerShell.cs index 674440b4a72e..a22b2d4447f8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class ErrorAdditionalInfo partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ErrorAdditionalInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ErrorAdditionalInfo(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,17 +104,17 @@ internal ErrorAdditionalInfo(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Info")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AnyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AnyTypeConverter.ConvertFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -129,11 +129,11 @@ internal ErrorAdditionalInfo(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Info")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AnyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AnyTypeConverter.ConvertFrom); } AfterDeserializePSObject(content); } @@ -143,7 +143,7 @@ internal ErrorAdditionalInfo(global::System.Management.Automation.PSObject conte /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.TypeConverter.cs index af63991aa4b0..aea61e905934 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.cs similarity index 82% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.cs index f188ec1c2531..0784b39b190b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// The resource management error additional info. public partial class ErrorAdditionalInfo : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal { /// Backing field for property. @@ -21,10 +21,10 @@ public partial class ErrorAdditionalInfo : public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Any()); } /// Internal Acessors for Info - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal.Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Any()); set { {_info = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal.Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Any()); set { {_info = value;} } } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfoInternal.Type { get => this._type; set { {_type = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfoInternal.Type { get => this._type; set { {_type = value;} } } /// Backing field for property. private string _type; @@ -47,6 +47,9 @@ public partial interface IErrorAdditionalInfo : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The additional info.", SerializedName = @"info", PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny) })] @@ -55,6 +58,9 @@ public partial interface IErrorAdditionalInfo : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The additional info type.", SerializedName = @"type", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.json.cs index 82c740ad4aee..13862bffa0eb 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorAdditionalInfo.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorAdditionalInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,19 +65,19 @@ internal ErrorAdditionalInfo(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime { return; } - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_info = If( json?.PropertyT("info"), out var __jsonInfo) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Any.FromJson(__jsonInfo) : Info;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)_type;} + {_info = If( json?.PropertyT("info"), out var __jsonInfo) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Any.FromJson(__jsonInfo) : _info;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ErrorAdditionalInfo(json) : null; } @@ -101,11 +101,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != this._info ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._info.ToJson(null,serializationMode) : null, "info" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.PowerShell.cs similarity index 68% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.PowerShell.cs index ed519f43b0e0..e722483c3d1b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class ErrorDetail partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ErrorDetail(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ErrorDetail(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,29 +104,29 @@ internal ErrorDetail(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).AdditionalInfo = (System.Collections.Generic.List) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -141,23 +141,23 @@ internal ErrorDetail(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).AdditionalInfo = (System.Collections.Generic.List) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -167,7 +167,7 @@ internal ErrorDetail(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.TypeConverter.cs index ad3ba221d697..31f57eca392a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.cs similarity index 66% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.cs index 35a92cc363b6..b2657bbc8253 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// The error detail. public partial class ErrorDetail : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] _additionalInfo; + private System.Collections.Generic.List _additionalInfo; /// The error additional info. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get => this._additionalInfo; } + public System.Collections.Generic.List AdditionalInfo { get => this._additionalInfo; } /// Backing field for property. private string _code; @@ -28,11 +28,11 @@ public partial class ErrorDetail : public string Code { get => this._code; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] _detail; + private System.Collections.Generic.List _detail; /// The error details. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get => this._detail; } + public System.Collections.Generic.List Detail { get => this._detail; } /// Backing field for property. private string _message; @@ -42,19 +42,19 @@ public partial class ErrorDetail : public string Message { get => this._message; } /// Internal Acessors for AdditionalInfo - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal.AdditionalInfo { get => this._additionalInfo; set { {_additionalInfo = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal.AdditionalInfo { get => this._additionalInfo; set { {_additionalInfo = value;} } } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal.Code { get => this._code; set { {_code = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal.Code { get => this._code; set { {_code = value;} } } /// Internal Acessors for Detail - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal.Detail { get => this._detail; set { {_detail = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal.Detail { get => this._detail; set { {_detail = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal.Message { get => this._message; set { {_message = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal.Message { get => this._message; set { {_message = value;} } } /// Internal Acessors for Target - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal.Target { get => this._target; set { {_target = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal.Target { get => this._target; set { {_target = value;} } } /// Backing field for property. private string _target; @@ -77,14 +77,20 @@ public partial interface IErrorDetail : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error additional info.", SerializedName = @"additionalInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo) })] + System.Collections.Generic.List AdditionalInfo { get; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error code.", SerializedName = @"code", PossibleTypes = new [] { typeof(string) })] @@ -93,14 +99,20 @@ public partial interface IErrorDetail : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error details.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) })] + System.Collections.Generic.List Detail { get; } /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error message.", SerializedName = @"message", PossibleTypes = new [] { typeof(string) })] @@ -109,6 +121,9 @@ public partial interface IErrorDetail : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error target.", SerializedName = @"target", PossibleTypes = new [] { typeof(string) })] @@ -120,11 +135,11 @@ internal partial interface IErrorDetailInternal { /// The error additional info. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get; set; } + System.Collections.Generic.List AdditionalInfo { get; set; } /// The error code. string Code { get; set; } /// The error details. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get; set; } + System.Collections.Generic.List Detail { get; set; } /// The error message. string Message { get; set; } /// The error target. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.json.cs similarity index 84% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.json.cs index faf91146dc83..074973961adc 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorDetail.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorDetail.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,22 +65,20 @@ internal ErrorDetail(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Js { return; } - {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} - {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} - {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)Target;} - {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail.FromJson(__u) )) ))() : null : Detail;} - {_additionalInfo = If( json?.PropertyT("additionalInfo"), out var __jsonAdditionalInfo) ? If( __jsonAdditionalInfo as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfo.FromJson(__p) )) ))() : null : AdditionalInfo;} + {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)_code;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)_message;} + {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)_target;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail.FromJson(__u) )) ))() : null : _detail;} + {_additionalInfo = If( json?.PropertyT("additionalInfo"), out var __jsonAdditionalInfo) ? If( __jsonAdditionalInfo as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfo.FromJson(__p) )) ))() : null : _additionalInfo;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ErrorDetail(json) : null; } @@ -104,19 +102,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._target)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._target.ToString()) : null, "target" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._detail) { @@ -128,7 +126,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( container.Add("details",__w); } } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._additionalInfo) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.PowerShell.cs similarity index 66% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.PowerShell.cs index 50f812039839..7771ebdde76f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -66,33 +66,33 @@ public partial class ErrorResponse partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ErrorResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ErrorResponse(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -107,33 +107,33 @@ internal ErrorResponse(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).AdditionalInfo = (System.Collections.Generic.List) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -148,27 +148,27 @@ internal ErrorResponse(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).AdditionalInfo = (System.Collections.Generic.List) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -178,7 +178,7 @@ internal ErrorResponse(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.TypeConverter.cs index ae226ab53cc6..1bb0bf108758 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.cs similarity index 57% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.cs index d5896ccf710c..35e012fe1230 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -12,54 +12,54 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 /// the OData error response format.). /// public partial class ErrorResponse : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal { /// The error additional info. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).AdditionalInfo; } + public System.Collections.Generic.List AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).AdditionalInfo; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Code; } + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Code; } /// The error details. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Detail; } + public System.Collections.Generic.List Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Detail; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail _error; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail _error; /// The error object. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail()); set => this._error = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail()); set => this._error = value; } /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Message; } + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Message; } /// Internal Acessors for AdditionalInfo - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).AdditionalInfo = value; } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).AdditionalInfo = value ?? null /* arrayOf */; } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Code = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Code = value ?? null; } /// Internal Acessors for Detail - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Detail = value; } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Detail = value ?? null /* arrayOf */; } /// Internal Acessors for Error - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail()); set { {_error = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail()); set { {_error = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Message = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Message = value ?? null; } /// Internal Acessors for Target - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponseInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Target = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponseInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Target = value ?? null; } /// The error target. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Target; } + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Target; } /// Creates an new instance. public ErrorResponse() @@ -76,14 +76,20 @@ public partial interface IErrorResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error additional info.", SerializedName = @"additionalInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo) })] + System.Collections.Generic.List AdditionalInfo { get; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error code.", SerializedName = @"code", PossibleTypes = new [] { typeof(string) })] @@ -92,14 +98,20 @@ public partial interface IErrorResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error details.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) })] + System.Collections.Generic.List Detail { get; } /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error message.", SerializedName = @"message", PossibleTypes = new [] { typeof(string) })] @@ -108,6 +120,9 @@ public partial interface IErrorResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error target.", SerializedName = @"target", PossibleTypes = new [] { typeof(string) })] @@ -120,13 +135,13 @@ internal partial interface IErrorResponseInternal { /// The error additional info. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get; set; } + System.Collections.Generic.List AdditionalInfo { get; set; } /// The error code. string Code { get; set; } /// The error details. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get; set; } + System.Collections.Generic.List Detail { get; set; } /// The error object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail Error { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail Error { get; set; } /// The error message. string Message { get; set; } /// The error target. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.json.cs similarity index 95% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.json.cs index 4d5ceefbc378..903b610df248 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ErrorResponse.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ErrorResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -68,18 +68,18 @@ internal ErrorResponse(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json. { return; } - {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail.FromJson(__jsonError) : Error;} + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail.FromJson(__jsonError) : _error;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ErrorResponse(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.PowerShell.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.PowerShell.cs index ed0540362e96..b79da314ef46 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class Filter partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Filter(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Filter(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,21 +104,21 @@ internal Filter(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Value, global::System.Convert.ToString); } if (content.Contains("Operator")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Operator = (string) content.GetValueForProperty("Operator",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Operator, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Operator = (string) content.GetValueForProperty("Operator",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Operator, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -133,15 +133,15 @@ internal Filter(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Value, global::System.Convert.ToString); } if (content.Contains("Operator")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Operator = (string) content.GetValueForProperty("Operator",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal)this).Operator, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Operator = (string) content.GetValueForProperty("Operator",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal)this).Operator, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -151,7 +151,7 @@ internal Filter(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.TypeConverter.cs index 9019d0245220..6db5a6bcee1c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.cs index 1c03b1c86be5..f9c180264df1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Filter criterion public partial class Filter : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterInternal { /// Backing field for property. @@ -48,6 +48,9 @@ public partial interface IFilter : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Filter name", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] @@ -56,6 +59,9 @@ public partial interface IFilter : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Filter operator", SerializedName = @"operator", PossibleTypes = new [] { typeof(string) })] @@ -64,6 +70,9 @@ public partial interface IFilter : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Filter values", SerializedName = @"values", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.json.cs index 6abe99742da3..306878c2348d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Filter.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Filter.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,20 +65,18 @@ internal Filter(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObj { return; } - {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_value = If( json?.PropertyT("values"), out var __jsonValues) ? (string)__jsonValues : (string)Value;} - {_operator = If( json?.PropertyT("operator"), out var __jsonOperator) ? (string)__jsonOperator : (string)Operator;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)_name;} + {_value = If( json?.PropertyT("values"), out var __jsonValues) ? (string)__jsonValues : (string)_value;} + {_operator = If( json?.PropertyT("operator"), out var __jsonOperator) ? (string)__jsonOperator : (string)_operator;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Filter(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.PowerShell.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.PowerShell.cs index d26d3122e898..7367d35ee5ab 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class FilterGroup partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new FilterGroup(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new FilterGroup(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,13 +104,13 @@ internal FilterGroup(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Filter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal)this).Filter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]) content.GetValueForProperty("Filter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal)this).Filter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal)this).Filter = (System.Collections.Generic.List) content.GetValueForProperty("Filter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal)this).Filter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -125,7 +125,7 @@ internal FilterGroup(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Filter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal)this).Filter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]) content.GetValueForProperty("Filter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal)this).Filter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal)this).Filter = (System.Collections.Generic.List) content.GetValueForProperty("Filter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal)this).Filter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -135,7 +135,7 @@ internal FilterGroup(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.TypeConverter.cs index 607323d70c07..38a4d682afa2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.cs similarity index 63% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.cs index a8e59a61ce1c..182774ef5aea 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Filter group public partial class FilterGroup : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] _filter; + private System.Collections.Generic.List _filter; /// List of filters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] Filter { get => this._filter; set => this._filter = value; } + public System.Collections.Generic.List Filter { get => this._filter; set => this._filter = value; } /// Creates an new instance. public FilterGroup() @@ -34,10 +34,13 @@ public partial interface IFilterGroup : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"List of filters", SerializedName = @"filter", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] Filter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter) })] + System.Collections.Generic.List Filter { get; set; } } /// Filter group @@ -45,7 +48,7 @@ internal partial interface IFilterGroupInternal { /// List of filters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] Filter { get; set; } + System.Collections.Generic.List Filter { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.json.cs index ab3852985917..8efc01eb8966 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/FilterGroup.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/FilterGroup.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -65,18 +65,16 @@ internal FilterGroup(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Js { return; } - {_filter = If( json?.PropertyT("filter"), out var __jsonFilter) ? If( __jsonFilter as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Filter.FromJson(__u) )) ))() : null : Filter;} + {_filter = If( json?.PropertyT("filter"), out var __jsonFilter) ? If( __jsonFilter as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Filter.FromJson(__u) )) ))() : null : _filter;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new FilterGroup(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.PowerShell.cs similarity index 74% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.PowerShell.cs index 8656be58f08d..6c110ecd5497 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Insight partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Insight(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Insight(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,25 +111,25 @@ internal Insight(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Result")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Result, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Result, global::System.Convert.ToString); } if (content.Contains("ImportanceLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).ImportanceLevel = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel?) content.GetValueForProperty("ImportanceLevel",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).ImportanceLevel, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).ImportanceLevel = (string) content.GetValueForProperty("ImportanceLevel",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).ImportanceLevel, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -144,19 +144,19 @@ internal Insight(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Result")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).Result, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Result = (string) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).Result, global::System.Convert.ToString); } if (content.Contains("ImportanceLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).ImportanceLevel = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel?) content.GetValueForProperty("ImportanceLevel",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal)this).ImportanceLevel, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).ImportanceLevel = (string) content.GetValueForProperty("ImportanceLevel",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal)this).ImportanceLevel, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.TypeConverter.cs index 7949ee11f0c0..d866eb5cad1f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.cs index 73e1ae8b347d..939cc61b65bd 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Detailed insights(s) obtained via the invocation of an insight diagnostic public partial class Insight : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsightInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsightInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class Insight : public string Id { get => this._id; set => this._id = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel? _importanceLevel; + private string _importanceLevel; /// Importance level of the insight. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel? ImportanceLevel { get => this._importanceLevel; set => this._importanceLevel = value; } + public string ImportanceLevel { get => this._importanceLevel; set => this._importanceLevel = value; } /// Backing field for property. private string _result; @@ -55,6 +55,9 @@ public partial interface IInsight : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Article id.", SerializedName = @"id", PossibleTypes = new [] { typeof(string) })] @@ -63,14 +66,21 @@ public partial interface IInsight : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Importance level of the insight.", SerializedName = @"importanceLevel", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel? ImportanceLevel { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Critical", "Warning", "Information")] + string ImportanceLevel { get; set; } /// Detailed result content. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Detailed result content.", SerializedName = @"results", PossibleTypes = new [] { typeof(string) })] @@ -79,6 +89,9 @@ public partial interface IInsight : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"This insight's title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -92,7 +105,8 @@ internal partial interface IInsightInternal /// Article id. string Id { get; set; } /// Importance level of the insight. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel? ImportanceLevel { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Critical", "Warning", "Information")] + string ImportanceLevel { get; set; } /// Detailed result content. string Result { get; set; } /// This insight's title. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.json.cs index 37266f96526c..1f291b85c5f1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Insight.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Insight.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class Insight partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Insight(json) : null; } @@ -77,10 +75,10 @@ internal Insight(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonOb { return; } - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_result = If( json?.PropertyT("results"), out var __jsonResults) ? (string)__jsonResults : (string)Result;} - {_importanceLevel = If( json?.PropertyT("importanceLevel"), out var __jsonImportanceLevel) ? (string)__jsonImportanceLevel : (string)ImportanceLevel;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)_id;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_result = If( json?.PropertyT("results"), out var __jsonResults) ? (string)__jsonResults : (string)_result;} + {_importanceLevel = If( json?.PropertyT("importanceLevel"), out var __jsonImportanceLevel) ? (string)__jsonImportanceLevel : (string)_importanceLevel;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.PowerShell.cs similarity index 61% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.PowerShell.cs index 94c69992a8af..f95bc213a7fa 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class MetricsBasedChart partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new MetricsBasedChart(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new MetricsBasedChart(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,37 +111,37 @@ internal MetricsBasedChart(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("FilterGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup) content.GetValueForProperty("FilterGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroup, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterGroupTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup) content.GetValueForProperty("FilterGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroup, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterGroupTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("AggregationType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).AggregationType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType?) content.GetValueForProperty("AggregationType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).AggregationType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).AggregationType = (string) content.GetValueForProperty("AggregationType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).AggregationType, global::System.Convert.ToString); } if (content.Contains("TimeSpanDuration")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).TimeSpanDuration = (string) content.GetValueForProperty("TimeSpanDuration",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).TimeSpanDuration, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).TimeSpanDuration = (string) content.GetValueForProperty("TimeSpanDuration",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).TimeSpanDuration, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("FilterGroupFilter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroupFilter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]) content.GetValueForProperty("FilterGroupFilter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroupFilter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroupFilter = (System.Collections.Generic.List) content.GetValueForProperty("FilterGroupFilter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroupFilter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -156,31 +156,31 @@ internal MetricsBasedChart(global::System.Management.Automation.PSObject content // actually deserialize if (content.Contains("FilterGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup) content.GetValueForProperty("FilterGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroup, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterGroupTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup) content.GetValueForProperty("FilterGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroup, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterGroupTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("AggregationType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).AggregationType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType?) content.GetValueForProperty("AggregationType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).AggregationType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).AggregationType = (string) content.GetValueForProperty("AggregationType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).AggregationType, global::System.Convert.ToString); } if (content.Contains("TimeSpanDuration")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).TimeSpanDuration = (string) content.GetValueForProperty("TimeSpanDuration",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).TimeSpanDuration, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).TimeSpanDuration = (string) content.GetValueForProperty("TimeSpanDuration",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).TimeSpanDuration, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("FilterGroupFilter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroupFilter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]) content.GetValueForProperty("FilterGroupFilter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal)this).FilterGroupFilter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroupFilter = (System.Collections.Generic.List) content.GetValueForProperty("FilterGroupFilter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal)this).FilterGroupFilter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.TypeConverter.cs index 06c8e9bf9a0a..a7b7a2f5eef0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.cs similarity index 71% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.cs index d6c0084c6f6f..60a131104c59 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.cs @@ -3,36 +3,36 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solutions metrics based chart public partial class MetricsBasedChart : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType? _aggregationType; + private string _aggregationType; /// Allowed values are Sum, Avg, Count, Min, Max. Default is Sum [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType? AggregationType { get => this._aggregationType; set => this._aggregationType = value; } + public string AggregationType { get => this._aggregationType; set => this._aggregationType = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup _filterGroup; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup _filterGroup; /// Filter group [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup FilterGroup { get => (this._filterGroup = this._filterGroup ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterGroup()); set => this._filterGroup = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup FilterGroup { get => (this._filterGroup = this._filterGroup ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterGroup()); set => this._filterGroup = value; } /// List of filters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] FilterGroupFilter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal)FilterGroup).Filter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroupInternal)FilterGroup).Filter = value ?? null /* arrayOf */; } + public System.Collections.Generic.List FilterGroupFilter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal)FilterGroup).Filter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroupInternal)FilterGroup).Filter = value ?? null /* arrayOf */; } /// Internal Acessors for FilterGroup - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChartInternal.FilterGroup { get => (this._filterGroup = this._filterGroup ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterGroup()); set { {_filterGroup = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChartInternal.FilterGroup { get => (this._filterGroup = this._filterGroup ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterGroup()); set { {_filterGroup = value;} } } /// Backing field for property. private string _name; @@ -76,22 +76,32 @@ public partial interface IMetricsBasedChart : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Allowed values are Sum, Avg, Count, Min, Max. Default is Sum", SerializedName = @"aggregationType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType? AggregationType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Sum", "Avg", "Count", "Min", "Max")] + string AggregationType { get; set; } /// List of filters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"List of filters", SerializedName = @"filter", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] FilterGroupFilter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter) })] + System.Collections.Generic.List FilterGroupFilter { get; set; } /// Chart name [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Chart name", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] @@ -100,6 +110,9 @@ public partial interface IMetricsBasedChart : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Place holder used in HTML Content replace control with the content", SerializedName = @"replacementKey", PossibleTypes = new [] { typeof(string) })] @@ -108,6 +121,9 @@ public partial interface IMetricsBasedChart : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Time span duration", SerializedName = @"timeSpanDuration", PossibleTypes = new [] { typeof(string) })] @@ -116,6 +132,9 @@ public partial interface IMetricsBasedChart : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Chart title", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -127,11 +146,12 @@ internal partial interface IMetricsBasedChartInternal { /// Allowed values are Sum, Avg, Count, Min, Max. Default is Sum - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType? AggregationType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Sum", "Avg", "Count", "Min", "Max")] + string AggregationType { get; set; } /// Filter group - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilterGroup FilterGroup { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilterGroup FilterGroup { get; set; } /// List of filters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[] FilterGroupFilter { get; set; } + System.Collections.Generic.List FilterGroupFilter { get; set; } /// Chart name string Name { get; set; } /// Place holder used in HTML Content replace control with the content diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.json.cs index e5446899cd5a..9588f9cba486 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/MetricsBasedChart.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/MetricsBasedChart.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class MetricsBasedChart partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new MetricsBasedChart(json) : null; } @@ -77,12 +77,12 @@ internal MetricsBasedChart(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.J { return; } - {_filterGroup = If( json?.PropertyT("filterGroup"), out var __jsonFilterGroup) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.FilterGroup.FromJson(__jsonFilterGroup) : FilterGroup;} - {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_aggregationType = If( json?.PropertyT("aggregationType"), out var __jsonAggregationType) ? (string)__jsonAggregationType : (string)AggregationType;} - {_timeSpanDuration = If( json?.PropertyT("timeSpanDuration"), out var __jsonTimeSpanDuration) ? (string)__jsonTimeSpanDuration : (string)TimeSpanDuration;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)ReplacementKey;} + {_filterGroup = If( json?.PropertyT("filterGroup"), out var __jsonFilterGroup) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.FilterGroup.FromJson(__jsonFilterGroup) : _filterGroup;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)_name;} + {_aggregationType = If( json?.PropertyT("aggregationType"), out var __jsonAggregationType) ? (string)__jsonAggregationType : (string)_aggregationType;} + {_timeSpanDuration = If( json?.PropertyT("timeSpanDuration"), out var __jsonTimeSpanDuration) ? (string)__jsonTimeSpanDuration : (string)_timeSpanDuration;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)_replacementKey;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.PowerShell.cs similarity index 62% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.PowerShell.cs index 4ed16ec4c254..5031ea3db6a2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class NlpSolutions partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new NlpSolutions(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new NlpSolutions(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,33 +111,33 @@ internal NlpSolutions(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ProblemTitle")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemTitle, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemTitle, global::System.Convert.ToString); } if (content.Contains("ProblemDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemDescription, global::System.Convert.ToString); } if (content.Contains("ServiceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ServiceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ServiceId, global::System.Convert.ToString); } if (content.Contains("ProblemClassificationId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemClassificationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemClassificationId, global::System.Convert.ToString); } if (content.Contains("Solution")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); } if (content.Contains("RelatedService")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).RelatedService = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationServiceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).RelatedService = (System.Collections.Generic.List) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationServiceTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -152,27 +152,27 @@ internal NlpSolutions(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("ProblemTitle")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemTitle, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemTitle, global::System.Convert.ToString); } if (content.Contains("ProblemDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemDescription, global::System.Convert.ToString); } if (content.Contains("ServiceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ServiceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ServiceId, global::System.Convert.ToString); } if (content.Contains("ProblemClassificationId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).ProblemClassificationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).ProblemClassificationId, global::System.Convert.ToString); } if (content.Contains("Solution")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); } if (content.Contains("RelatedService")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).RelatedService = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationServiceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).RelatedService = (System.Collections.Generic.List) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationServiceTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.TypeConverter.cs index 3266bb4e9c58..8342c768649a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.cs similarity index 75% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.cs index bc3299154341..d2609b79dad2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Nlp metadata. public partial class NlpSolutions : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal { /// Backing field for property. @@ -35,11 +35,11 @@ public partial class NlpSolutions : public string ProblemTitle { get => this._problemTitle; set => this._problemTitle = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] _relatedService; + private System.Collections.Generic.List _relatedService; /// The list of solution metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] RelatedService { get => this._relatedService; set => this._relatedService = value; } + public System.Collections.Generic.List RelatedService { get => this._relatedService; set => this._relatedService = value; } /// Backing field for property. private string _serviceId; @@ -49,11 +49,11 @@ public partial class NlpSolutions : public string ServiceId { get => this._serviceId; set => this._serviceId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] _solution; + private System.Collections.Generic.List _solution; /// The list of solution metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get => this._solution; set => this._solution = value; } + public System.Collections.Generic.List Solution { get => this._solution; set => this._solution = value; } /// Creates an new instance. public NlpSolutions() @@ -69,6 +69,9 @@ public partial interface INlpSolutions : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Problem Classification Id that is having the issue", SerializedName = @"problemClassificationId", PossibleTypes = new [] { typeof(string) })] @@ -77,6 +80,9 @@ public partial interface INlpSolutions : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Description for given ProblemClassificationId", SerializedName = @"problemDescription", PossibleTypes = new [] { typeof(string) })] @@ -85,6 +91,9 @@ public partial interface INlpSolutions : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Title for given ProblemClassificationId", SerializedName = @"problemTitle", PossibleTypes = new [] { typeof(string) })] @@ -93,14 +102,20 @@ public partial interface INlpSolutions : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The list of solution metadata.", SerializedName = @"relatedServices", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] RelatedService { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService) })] + System.Collections.Generic.List RelatedService { get; set; } /// Service resource id that is having the problem [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Service resource id that is having the problem", SerializedName = @"serviceId", PossibleTypes = new [] { typeof(string) })] @@ -109,10 +124,13 @@ public partial interface INlpSolutions : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The list of solution metadata.", SerializedName = @"solutions", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties) })] + System.Collections.Generic.List Solution { get; set; } } /// Nlp metadata. @@ -126,11 +144,11 @@ internal partial interface INlpSolutionsInternal /// Title for given ProblemClassificationId string ProblemTitle { get; set; } /// The list of solution metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] RelatedService { get; set; } + System.Collections.Generic.List RelatedService { get; set; } /// Service resource id that is having the problem string ServiceId { get; set; } /// The list of solution metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } + System.Collections.Generic.List Solution { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.json.cs similarity index 85% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.json.cs index 830c6a115b2e..5356224f7c61 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/NlpSolutions.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/NlpSolutions.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class NlpSolutions partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new NlpSolutions(json) : null; } @@ -77,12 +77,12 @@ internal NlpSolutions(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.J { return; } - {_problemTitle = If( json?.PropertyT("problemTitle"), out var __jsonProblemTitle) ? (string)__jsonProblemTitle : (string)ProblemTitle;} - {_problemDescription = If( json?.PropertyT("problemDescription"), out var __jsonProblemDescription) ? (string)__jsonProblemDescription : (string)ProblemDescription;} - {_serviceId = If( json?.PropertyT("serviceId"), out var __jsonServiceId) ? (string)__jsonServiceId : (string)ServiceId;} - {_problemClassificationId = If( json?.PropertyT("problemClassificationId"), out var __jsonProblemClassificationId) ? (string)__jsonProblemClassificationId : (string)ProblemClassificationId;} - {_solution = If( json?.PropertyT("solutions"), out var __jsonSolutions) ? If( __jsonSolutions as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataProperties.FromJson(__u) )) ))() : null : Solution;} - {_relatedService = If( json?.PropertyT("relatedServices"), out var __jsonRelatedServices) ? If( __jsonRelatedServices as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ClassificationService.FromJson(__p) )) ))() : null : RelatedService;} + {_problemTitle = If( json?.PropertyT("problemTitle"), out var __jsonProblemTitle) ? (string)__jsonProblemTitle : (string)_problemTitle;} + {_problemDescription = If( json?.PropertyT("problemDescription"), out var __jsonProblemDescription) ? (string)__jsonProblemDescription : (string)_problemDescription;} + {_serviceId = If( json?.PropertyT("serviceId"), out var __jsonServiceId) ? (string)__jsonServiceId : (string)_serviceId;} + {_problemClassificationId = If( json?.PropertyT("problemClassificationId"), out var __jsonProblemClassificationId) ? (string)__jsonProblemClassificationId : (string)_problemClassificationId;} + {_solution = If( json?.PropertyT("solutions"), out var __jsonSolutions) ? If( __jsonSolutions as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataProperties.FromJson(__u) )) ))() : null : _solution;} + {_relatedService = If( json?.PropertyT("relatedServices"), out var __jsonRelatedServices) ? If( __jsonRelatedServices as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationService.FromJson(__p) )) ))() : null : _relatedService;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.PowerShell.cs similarity index 64% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.PowerShell.cs index c851b141796b..0d7497a41a8b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -65,27 +65,27 @@ public partial class Operation partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Operation(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Operation(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperatio /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,45 +113,45 @@ internal Operation(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Display")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplayTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("IsDataAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Origin")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Origin, global::System.Convert.ToString); } if (content.Contains("ActionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).ActionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType?) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).ActionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).ActionType = (string) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).ActionType, global::System.Convert.ToString); } if (content.Contains("DisplayProvider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); } if (content.Contains("DisplayResource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); } if (content.Contains("DisplayOperation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); } if (content.Contains("DisplayDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -166,39 +166,39 @@ internal Operation(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Display")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplayTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("IsDataAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Origin")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).Origin, global::System.Convert.ToString); } if (content.Contains("ActionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).ActionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType?) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).ActionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).ActionType = (string) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).ActionType, global::System.Convert.ToString); } if (content.Contains("DisplayProvider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); } if (content.Contains("DisplayResource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); } if (content.Contains("DisplayOperation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); } if (content.Contains("DisplayDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.TypeConverter.cs index 993f253f05f7..c02bbdc64f33 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.cs similarity index 74% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.cs index 79d9a8128f10..28fc3fc21673 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -11,50 +11,50 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 /// Details of a REST API operation, returned from the Resource Provider Operations API /// public partial class Operation : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType? _actionType; + private string _actionType; /// /// Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType? ActionType { get => this._actionType; } + public string ActionType { get => this._actionType; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay _display; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay _display; /// Localized display information for this particular operation. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplay()); set => this._display = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplay()); set => this._display = value; } /// /// The short, localized friendly description of the operation; suitable for tool tips and detailed views. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Description; } + public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Description; } /// /// The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", /// "Restart Virtual Machine". /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Operation; } + public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Operation; } /// /// The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute". /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Provider; } + public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Provider; } /// /// The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections". /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Resource; } + public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Resource; } /// Backing field for property. private bool? _isDataAction; @@ -67,31 +67,31 @@ public partial class Operation : public bool? IsDataAction { get => this._isDataAction; } /// Internal Acessors for ActionType - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.ActionType { get => this._actionType; set { {_actionType = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.ActionType { get => this._actionType; set { {_actionType = value;} } } /// Internal Acessors for Display - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplay()); set { {_display = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplay()); set { {_display = value;} } } /// Internal Acessors for DisplayDescription - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Description = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Description = value ?? null; } /// Internal Acessors for DisplayOperation - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Operation = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Operation = value ?? null; } /// Internal Acessors for DisplayProvider - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Provider = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Provider = value ?? null; } /// Internal Acessors for DisplayResource - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)Display).Resource = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)Display).Resource = value ?? null; } /// Internal Acessors for IsDataAction - bool? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.IsDataAction { get => this._isDataAction; set { {_isDataAction = value;} } } + bool? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.IsDataAction { get => this._isDataAction; set { {_isDataAction = value;} } } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.Name { get => this._name; set { {_name = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.Name { get => this._name; set { {_name = value;} } } /// Internal Acessors for Origin - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationInternal.Origin { get => this._origin; set { {_origin = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationInternal.Origin { get => this._origin; set { {_origin = value;} } } /// Backing field for property. private string _name; @@ -104,14 +104,14 @@ public partial class Operation : public string Name { get => this._name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin? _origin; + private string _origin; /// /// The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is /// "user,system" /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin? Origin { get => this._origin; } + public string Origin { get => this._origin; } /// Creates an new instance. public Operation() @@ -129,16 +129,23 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Enum. Indicates the action type. ""Internal"" refers to actions that are for internal only APIs.", SerializedName = @"actionType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType? ActionType { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Internal")] + string ActionType { get; } /// /// The short, localized friendly description of the operation; suitable for tool tips and detailed views. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The short, localized friendly description of the operation; suitable for tool tips and detailed views.", SerializedName = @"description", PossibleTypes = new [] { typeof(string) })] @@ -150,6 +157,9 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The concise, localized friendly name for the operation; suitable for dropdowns. E.g. ""Create or Update Virtual Machine"", ""Restart Virtual Machine"".", SerializedName = @"operation", PossibleTypes = new [] { typeof(string) })] @@ -160,6 +170,9 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The localized friendly form of the resource provider name, e.g. ""Microsoft Monitoring Insights"" or ""Microsoft Compute"".", SerializedName = @"provider", PossibleTypes = new [] { typeof(string) })] @@ -170,6 +183,9 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The localized friendly name of the resource type related to this operation. E.g. ""Virtual Machines"" or ""Job Schedule Collections"".", SerializedName = @"resource", PossibleTypes = new [] { typeof(string) })] @@ -181,6 +197,9 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Whether the operation applies to data-plane. This is ""true"" for data-plane operations and ""false"" for ARM/control-plane operations.", SerializedName = @"isDataAction", PossibleTypes = new [] { typeof(bool) })] @@ -192,6 +211,9 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The name of the operation, as per Resource-Based Access Control (RBAC). Examples: ""Microsoft.Compute/virtualMachines/write"", ""Microsoft.Compute/virtualMachines/capture/action""", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] @@ -203,10 +225,14 @@ public partial interface IOperation : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is ""user,system""", SerializedName = @"origin", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin? Origin { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("user", "system", "user,system")] + string Origin { get; } } /// Details of a REST API operation, returned from the Resource Provider Operations API @@ -216,9 +242,10 @@ internal partial interface IOperationInternal /// /// Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType? ActionType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Internal")] + string ActionType { get; set; } /// Localized display information for this particular operation. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay Display { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay Display { get; set; } /// /// The short, localized friendly description of the operation; suitable for tool tips and detailed views. /// @@ -250,7 +277,8 @@ internal partial interface IOperationInternal /// The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is /// "user,system" /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin? Origin { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("user", "system", "user,system")] + string Origin { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.json.cs similarity index 90% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.json.cs index 914ab8dc034d..01f104f5e088 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Operation.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Operation.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -56,13 +56,11 @@ public partial class Operation partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Operation(json) : null; } @@ -79,11 +77,11 @@ internal Operation(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Json { return; } - {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationDisplay.FromJson(__jsonDisplay) : Display;} - {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_isDataAction = If( json?.PropertyT("isDataAction"), out var __jsonIsDataAction) ? (bool?)__jsonIsDataAction : IsDataAction;} - {_origin = If( json?.PropertyT("origin"), out var __jsonOrigin) ? (string)__jsonOrigin : (string)Origin;} - {_actionType = If( json?.PropertyT("actionType"), out var __jsonActionType) ? (string)__jsonActionType : (string)ActionType;} + {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationDisplay.FromJson(__jsonDisplay) : _display;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)_name;} + {_isDataAction = If( json?.PropertyT("isDataAction"), out var __jsonIsDataAction) ? (bool?)__jsonIsDataAction : _isDataAction;} + {_origin = If( json?.PropertyT("origin"), out var __jsonOrigin) ? (string)__jsonOrigin : (string)_origin;} + {_actionType = If( json?.PropertyT("actionType"), out var __jsonActionType) ? (string)__jsonActionType : (string)_actionType;} AfterFromJson(json); } @@ -107,19 +105,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( return container; } AddIf( null != this._display ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._display.ToJson(null,serializationMode) : null, "display" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != this._isDataAction ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonBoolean((bool)this._isDataAction) : null, "isDataAction" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._origin)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._origin.ToString()) : null, "origin" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._actionType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._actionType.ToString()) : null, "actionType" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.PowerShell.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.PowerShell.cs index ac94907f52fc..b78338f894c6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class OperationDisplay partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationDisplay(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationDisplay(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperatio /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,25 +111,25 @@ internal OperationDisplay(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Provider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); } if (content.Contains("Resource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); } if (content.Contains("Operation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -144,19 +144,19 @@ internal OperationDisplay(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Provider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); } if (content.Contains("Resource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); } if (content.Contains("Operation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.TypeConverter.cs index df3ad33372ce..4ed02a7e519b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.cs index 549813e94285..ab44e2cc12c5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Localized display information for this particular operation. public partial class OperationDisplay : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal { /// Backing field for property. @@ -23,16 +23,16 @@ public partial class OperationDisplay : public string Description { get => this._description; } /// Internal Acessors for Description - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } /// Internal Acessors for Operation - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } /// Internal Acessors for Provider - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } /// Internal Acessors for Resource - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } /// Backing field for property. private string _operation; @@ -78,6 +78,9 @@ public partial interface IOperationDisplay : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The short, localized friendly description of the operation; suitable for tool tips and detailed views.", SerializedName = @"description", PossibleTypes = new [] { typeof(string) })] @@ -89,6 +92,9 @@ public partial interface IOperationDisplay : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The concise, localized friendly name for the operation; suitable for dropdowns. E.g. ""Create or Update Virtual Machine"", ""Restart Virtual Machine"".", SerializedName = @"operation", PossibleTypes = new [] { typeof(string) })] @@ -99,6 +105,9 @@ public partial interface IOperationDisplay : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The localized friendly form of the resource provider name, e.g. ""Microsoft Monitoring Insights"" or ""Microsoft Compute"".", SerializedName = @"provider", PossibleTypes = new [] { typeof(string) })] @@ -109,6 +118,9 @@ public partial interface IOperationDisplay : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The localized friendly name of the resource type related to this operation. E.g. ""Virtual Machines"" or ""Job Schedule Collections"".", SerializedName = @"resource", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.json.cs index b12f11a9e6bc..db6d3463370b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationDisplay.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationDisplay.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class OperationDisplay partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new OperationDisplay(json) : null; } @@ -77,10 +77,10 @@ internal OperationDisplay(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Js { return; } - {_provider = If( json?.PropertyT("provider"), out var __jsonProvider) ? (string)__jsonProvider : (string)Provider;} - {_resource = If( json?.PropertyT("resource"), out var __jsonResource) ? (string)__jsonResource : (string)Resource;} - {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} - {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} + {_provider = If( json?.PropertyT("provider"), out var __jsonProvider) ? (string)__jsonProvider : (string)_provider;} + {_resource = If( json?.PropertyT("resource"), out var __jsonResource) ? (string)__jsonResource : (string)_resource;} + {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)_operation;} + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)_description;} AfterFromJson(json); } @@ -103,19 +103,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._provider)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._provider.ToString()) : null, "provider" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._resource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._resource.ToString()) : null, "resource" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.PowerShell.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.PowerShell.cs index 33a312988012..f72adeb35ef3 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -66,27 +66,27 @@ public partial class OperationListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationListResult(content); } @@ -96,10 +96,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperatio /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -114,17 +114,17 @@ internal OperationListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).Value = (System.Collections.Generic.List) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -139,11 +139,11 @@ internal OperationListResult(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).Value = (System.Collections.Generic.List) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.TypeConverter.cs index aedbfcea930b..7ddd78c31336 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.cs similarity index 72% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.cs index 3ced3f514e88..bbcb3e51fff0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -12,15 +12,15 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 /// results. /// public partial class OperationListResult : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal { /// Internal Acessors for NextLink - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } /// Internal Acessors for Value - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResultInternal.Value { get => this._value; set { {_value = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResultInternal.Value { get => this._value; set { {_value = value;} } } /// Backing field for property. private string _nextLink; @@ -30,11 +30,11 @@ public partial class OperationListResult : public string NextLink { get => this._nextLink; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[] _value; + private System.Collections.Generic.List _value; /// List of operations supported by the resource provider [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[] Value { get => this._value; } + public System.Collections.Generic.List Value { get => this._value; } /// Creates an new instance. public OperationListResult() @@ -51,6 +51,9 @@ public partial interface IOperationListResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"URL to get the next set of operation list results (if there are any).", SerializedName = @"nextLink", PossibleTypes = new [] { typeof(string) })] @@ -59,10 +62,13 @@ public partial interface IOperationListResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"List of operations supported by the resource provider", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[] Value { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation) })] + System.Collections.Generic.List Value { get; } } /// A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of @@ -73,7 +79,7 @@ internal partial interface IOperationListResultInternal /// URL to get the next set of operation list results (if there are any). string NextLink { get; set; } /// List of operations supported by the resource provider - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation[] Value { get; set; } + System.Collections.Generic.List Value { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.json.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.json.cs index 95f44fe9ede9..fe61299cd5c5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/OperationListResult.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/OperationListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -57,13 +57,13 @@ public partial class OperationListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new OperationListResult(json) : null; } @@ -80,8 +80,8 @@ internal OperationListResult(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Operation.FromJson(__u) )) ))() : null : Value;} - {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Operation.FromJson(__u) )) ))() : null : _value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)_nextLink;} AfterFromJson(json); } @@ -104,7 +104,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._value) { @@ -116,7 +116,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( container.Add("value",__w); } } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.PowerShell.cs similarity index 60% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.PowerShell.cs index 80d243aaee7b..c1582ea68dc2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -65,27 +65,27 @@ public partial class ProxyResource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ProxyResource(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ProxyResource(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyRes /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,49 +113,49 @@ internal ProxyResource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -170,43 +170,43 @@ internal ProxyResource(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.TypeConverter.cs index 24b52aefb4a7..b002036b66af 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.cs new file mode 100644 index 000000000000..01873c3ad3b2 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.cs @@ -0,0 +1,130 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + /// + public partial class ProxyResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Resource(); + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Id = value ?? null; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Name = value ?? null; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? null; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Type = value ?? null; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Name; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemData = value ?? null /* model class */; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedAt; } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedBy; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataCreatedByType; } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedAt; } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedBy; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).SystemDataLastModifiedByType; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public ProxyResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + public partial interface IProxyResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource + { + + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + internal partial interface IProxyResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.json.cs similarity index 95% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.json.cs index f03fe7b33423..acff0d1fb589 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/ProxyResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ProxyResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class ProxyResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IProxyResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ProxyResource(json) : null; } @@ -79,7 +79,7 @@ internal ProxyResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json. { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); + __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Resource(json); AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.PowerShell.cs similarity index 54% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.PowerShell.cs index 5aa650a35c1d..8385ed557515 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class ReplacementMaps partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ReplacementMaps(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ReplacementMaps(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,33 +111,33 @@ internal ReplacementMaps(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("WebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).WebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).WebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).WebResult = (System.Collections.Generic.List) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).WebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("Diagnostic")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Diagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Diagnostic = (System.Collections.Generic.List) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); } if (content.Contains("Troubleshooter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Troubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("Troubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Troubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Troubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("Troubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Troubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); } if (content.Contains("MetricsBasedChart")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).MetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("MetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).MetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).MetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("MetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).MetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); } if (content.Contains("Video")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Video = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Video, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Video = (System.Collections.Generic.List) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Video, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("VideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).VideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).VideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -152,27 +152,27 @@ internal ReplacementMaps(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("WebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).WebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).WebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).WebResult = (System.Collections.Generic.List) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).WebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("Diagnostic")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Diagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Diagnostic = (System.Collections.Generic.List) content.GetValueForProperty("Diagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Diagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); } if (content.Contains("Troubleshooter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Troubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("Troubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Troubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Troubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("Troubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Troubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); } if (content.Contains("MetricsBasedChart")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).MetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("MetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).MetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).MetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("MetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).MetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); } if (content.Contains("Video")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Video = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).Video, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Video = (System.Collections.Generic.List) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).Video, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("VideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).VideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).VideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.TypeConverter.cs index ba9bc88d1436..e8501564e7ab 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.cs similarity index 53% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.cs index 6dfa2277735b..ba175183a03d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.cs @@ -3,59 +3,59 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solution replacement maps. public partial class ReplacementMaps : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] _diagnostic; + private System.Collections.Generic.List _diagnostic; /// Solution diagnostics results. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] Diagnostic { get => this._diagnostic; set => this._diagnostic = value; } + public System.Collections.Generic.List Diagnostic { get => this._diagnostic; set => this._diagnostic = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] _metricsBasedChart; + private System.Collections.Generic.List _metricsBasedChart; /// Solution metrics based charts [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] MetricsBasedChart { get => this._metricsBasedChart; set => this._metricsBasedChart = value; } + public System.Collections.Generic.List MetricsBasedChart { get => this._metricsBasedChart; set => this._metricsBasedChart = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] _troubleshooter; + private System.Collections.Generic.List _troubleshooter; /// Solutions Troubleshooters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] Troubleshooter { get => this._troubleshooter; set => this._troubleshooter = value; } + public System.Collections.Generic.List Troubleshooter { get => this._troubleshooter; set => this._troubleshooter = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] _video; + private System.Collections.Generic.List _video; /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] Video { get => this._video; set => this._video = value; } + public System.Collections.Generic.List Video { get => this._video; set => this._video = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] _videoGroup; + private System.Collections.Generic.List _videoGroup; /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] VideoGroup { get => this._videoGroup; set => this._videoGroup = value; } + public System.Collections.Generic.List VideoGroup { get => this._videoGroup; set => this._videoGroup = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] _webResult; + private System.Collections.Generic.List _webResult; /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] WebResult { get => this._webResult; set => this._webResult = value; } + public System.Collections.Generic.List WebResult { get => this._webResult; set => this._webResult = value; } /// Creates an new instance. public ReplacementMaps() @@ -71,52 +71,70 @@ public partial interface IReplacementMaps : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution diagnostics results.", SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] Diagnostic { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic) })] + System.Collections.Generic.List Diagnostic { get; set; } /// Solution metrics based charts [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution metrics based charts", SerializedName = @"metricsBasedCharts", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] MetricsBasedChart { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart) })] + System.Collections.Generic.List MetricsBasedChart { get; set; } /// Solutions Troubleshooters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solutions Troubleshooters", SerializedName = @"troubleshooters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] Troubleshooter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters) })] + System.Collections.Generic.List Troubleshooter { get; set; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] Video { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List Video { get; set; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Group of Videos", SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] VideoGroup { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List VideoGroup { get; set; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution AzureKB results", SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] WebResult { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List WebResult { get; set; } } /// Solution replacement maps. @@ -124,19 +142,19 @@ internal partial interface IReplacementMapsInternal { /// Solution diagnostics results. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] Diagnostic { get; set; } + System.Collections.Generic.List Diagnostic { get; set; } /// Solution metrics based charts - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] MetricsBasedChart { get; set; } + System.Collections.Generic.List MetricsBasedChart { get; set; } /// Solutions Troubleshooters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] Troubleshooter { get; set; } + System.Collections.Generic.List Troubleshooter { get; set; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] Video { get; set; } + System.Collections.Generic.List Video { get; set; } /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] VideoGroup { get; set; } + System.Collections.Generic.List VideoGroup { get; set; } /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] WebResult { get; set; } + System.Collections.Generic.List WebResult { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.json.cs similarity index 77% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.json.cs index 1715bf2f98db..9c86177f2770 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMaps.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMaps.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ReplacementMaps partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ReplacementMaps(json) : null; } @@ -77,12 +77,12 @@ internal ReplacementMaps(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Jso { return; } - {_webResult = If( json?.PropertyT("webResults"), out var __jsonWebResults) ? If( __jsonWebResults as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResult.FromJson(__u) )) ))() : null : WebResult;} - {_diagnostic = If( json?.PropertyT("diagnostics"), out var __jsonDiagnostics) ? If( __jsonDiagnostics as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnostic.FromJson(__p) )) ))() : null : Diagnostic;} - {_troubleshooter = If( json?.PropertyT("troubleshooters"), out var __jsonTroubleshooters) ? If( __jsonTroubleshooters as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __l) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__l, (__k)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshooters.FromJson(__k) )) ))() : null : Troubleshooter;} - {_metricsBasedChart = If( json?.PropertyT("metricsBasedCharts"), out var __jsonMetricsBasedCharts) ? If( __jsonMetricsBasedCharts as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __g) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__g, (__f)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChart.FromJson(__f) )) ))() : null : MetricsBasedChart;} - {_video = If( json?.PropertyT("videos"), out var __jsonVideos) ? If( __jsonVideos as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __b) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__b, (__a)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Video.FromJson(__a) )) ))() : null : Video;} - {_videoGroup = If( json?.PropertyT("videoGroups"), out var __jsonVideoGroups) ? If( __jsonVideoGroups as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var ___w) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(___w, (___v)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroup.FromJson(___v) )) ))() : null : VideoGroup;} + {_webResult = If( json?.PropertyT("webResults"), out var __jsonWebResults) ? If( __jsonWebResults as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResult.FromJson(__u) )) ))() : null : _webResult;} + {_diagnostic = If( json?.PropertyT("diagnostics"), out var __jsonDiagnostics) ? If( __jsonDiagnostics as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnostic.FromJson(__p) )) ))() : null : _diagnostic;} + {_troubleshooter = If( json?.PropertyT("troubleshooters"), out var __jsonTroubleshooters) ? If( __jsonTroubleshooters as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __l) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__l, (__k)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshooters.FromJson(__k) )) ))() : null : _troubleshooter;} + {_metricsBasedChart = If( json?.PropertyT("metricsBasedCharts"), out var __jsonMetricsBasedCharts) ? If( __jsonMetricsBasedCharts as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __g) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__g, (__f)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChart.FromJson(__f) )) ))() : null : _metricsBasedChart;} + {_video = If( json?.PropertyT("videos"), out var __jsonVideos) ? If( __jsonVideos as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __b) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__b, (__a)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Video.FromJson(__a) )) ))() : null : _video;} + {_videoGroup = If( json?.PropertyT("videoGroups"), out var __jsonVideoGroups) ? If( __jsonVideoGroups as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var ___w) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(___w, (___v)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroup.FromJson(___v) )) ))() : null : _videoGroup;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.PowerShell.cs similarity index 65% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.PowerShell.cs index 4b5834025af8..bb1c47d0e693 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class ReplacementMapsSelfHelp partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ReplacementMapsSelfHelp(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ReplacementMapsSelfHelp(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +111,21 @@ internal ReplacementMapsSelfHelp(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("WebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).WebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).WebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).WebResult = (System.Collections.Generic.List) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).WebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("Video")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).Video = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).Video, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).Video = (System.Collections.Generic.List) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).Video, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("VideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).VideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).VideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +140,15 @@ internal ReplacementMapsSelfHelp(global::System.Management.Automation.PSObject c // actually deserialize if (content.Contains("WebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).WebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).WebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).WebResult = (System.Collections.Generic.List) content.GetValueForProperty("WebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).WebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("Video")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).Video = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).Video, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).Video = (System.Collections.Generic.List) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).Video, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("VideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).VideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).VideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("VideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)this).VideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.TypeConverter.cs index 2bcc2cfd9cf2..a6ea322a95b6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.cs similarity index 59% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.cs index 8cf64eb19b08..f728f0fa461f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.cs @@ -3,38 +3,38 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solution replacement maps. public partial class ReplacementMapsSelfHelp : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] _video; + private System.Collections.Generic.List _video; /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] Video { get => this._video; set => this._video = value; } + public System.Collections.Generic.List Video { get => this._video; set => this._video = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] _videoGroup; + private System.Collections.Generic.List _videoGroup; /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] VideoGroup { get => this._videoGroup; set => this._videoGroup = value; } + public System.Collections.Generic.List VideoGroup { get => this._videoGroup; set => this._videoGroup = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] _webResult; + private System.Collections.Generic.List _webResult; /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] WebResult { get => this._webResult; set => this._webResult = value; } + public System.Collections.Generic.List WebResult { get => this._webResult; set => this._webResult = value; } /// Creates an new instance. public ReplacementMapsSelfHelp() @@ -52,26 +52,35 @@ public partial interface IReplacementMapsSelfHelp : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] Video { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List Video { get; set; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Group of Videos", SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] VideoGroup { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List VideoGroup { get; set; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution AzureKB results", SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] WebResult { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List WebResult { get; set; } } /// Solution replacement maps. @@ -81,11 +90,11 @@ internal partial interface IReplacementMapsSelfHelpInternal /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] Video { get; set; } + System.Collections.Generic.List Video { get; set; } /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] VideoGroup { get; set; } + System.Collections.Generic.List VideoGroup { get; set; } /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] WebResult { get; set; } + System.Collections.Generic.List WebResult { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.json.cs similarity index 83% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.json.cs index cd79f67c0bff..dae11bf54e0e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ReplacementMapsSelfHelp.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ReplacementMapsSelfHelp.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ReplacementMapsSelfHelp partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ReplacementMapsSelfHelp(json) : null; } @@ -77,9 +77,9 @@ internal ReplacementMapsSelfHelp(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Run { return; } - {_webResult = If( json?.PropertyT("webResults"), out var __jsonWebResults) ? If( __jsonWebResults as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResult.FromJson(__u) )) ))() : null : WebResult;} - {_video = If( json?.PropertyT("videos"), out var __jsonVideos) ? If( __jsonVideos as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Video.FromJson(__p) )) ))() : null : Video;} - {_videoGroup = If( json?.PropertyT("videoGroups"), out var __jsonVideoGroups) ? If( __jsonVideoGroups as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __l) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__l, (__k)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroup.FromJson(__k) )) ))() : null : VideoGroup;} + {_webResult = If( json?.PropertyT("webResults"), out var __jsonWebResults) ? If( __jsonWebResults as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResult.FromJson(__u) )) ))() : null : _webResult;} + {_video = If( json?.PropertyT("videos"), out var __jsonVideos) ? If( __jsonVideos as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Video.FromJson(__p) )) ))() : null : _video;} + {_videoGroup = If( json?.PropertyT("videoGroups"), out var __jsonVideoGroups) ? If( __jsonVideoGroups as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __l) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__l, (__k)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroup.FromJson(__k) )) ))() : null : _videoGroup;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.PowerShell.cs similarity index 60% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.PowerShell.cs index 86e727bfe0bd..a2de65ec9f8e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -65,27 +65,27 @@ public partial class Resource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Resource(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Resource(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,49 +113,49 @@ internal Resource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -170,43 +170,43 @@ internal Resource(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.TypeConverter.cs index 4f7385bbb2df..1ccd0c26df9b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.cs similarity index 61% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.cs index c594ae093d2e..feb186df1a62 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -11,8 +11,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 /// Common fields that are returned in the response for all Azure Resource Manager resources /// public partial class Resource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal { /// Backing field for property. @@ -25,16 +25,34 @@ public partial class Resource : public string Id { get => this._id; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => this._id; set { {_id = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => this._id; set { {_id = value;} } } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => this._name; set { {_name = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => this._name; set { {_name = value;} } } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemData()); set { {_systemData = value;} } } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedByType = value ?? null; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => this._type; set { {_type = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => this._type; set { {_type = value;} } } /// Backing field for property. private string _name; @@ -44,37 +62,37 @@ public partial class Resource : public string Name { get => this._name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData _systemData; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData _systemData; /// /// Azure Resource Manager metadata containing createdBy and modifiedBy information. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemData()); } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemData()); } /// The timestamp of resource creation (UTC). [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).CreatedAt = value ?? default(global::System.DateTime); } + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedAt; } /// The identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).CreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).CreatedBy = value ?? null; } + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedBy; } /// The type of identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).CreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).CreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).CreatedByType; } /// The timestamp of resource last modification (UTC) [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).LastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).LastModifiedAt = value ?? default(global::System.DateTime); } + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedAt; } /// The identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).LastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).LastModifiedBy = value ?? null; } + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedBy; } /// The type of identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).LastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)SystemData).LastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)SystemData).LastModifiedByType; } /// Backing field for property. private string _type; @@ -101,6 +119,9 @@ public partial interface IResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Fully qualified resource ID for the resource. E.g. ""/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}""", SerializedName = @"id", PossibleTypes = new [] { typeof(string) })] @@ -109,6 +130,9 @@ public partial interface IResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The name of the resource", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] @@ -116,57 +140,80 @@ public partial interface IResource : /// The timestamp of resource creation (UTC). [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The timestamp of resource creation (UTC).", SerializedName = @"createdAt", PossibleTypes = new [] { typeof(global::System.DateTime) })] - global::System.DateTime? SystemDataCreatedAt { get; set; } + global::System.DateTime? SystemDataCreatedAt { get; } /// The identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The identity that created the resource.", SerializedName = @"createdBy", PossibleTypes = new [] { typeof(string) })] - string SystemDataCreatedBy { get; set; } + string SystemDataCreatedBy { get; } /// The type of identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The type of identity that created the resource.", SerializedName = @"createdByType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string SystemDataCreatedByType { get; } /// The timestamp of resource last modification (UTC) [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The timestamp of resource last modification (UTC)", SerializedName = @"lastModifiedAt", PossibleTypes = new [] { typeof(global::System.DateTime) })] - global::System.DateTime? SystemDataLastModifiedAt { get; set; } + global::System.DateTime? SystemDataLastModifiedAt { get; } /// The identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The identity that last modified the resource.", SerializedName = @"lastModifiedBy", PossibleTypes = new [] { typeof(string) })] - string SystemDataLastModifiedBy { get; set; } + string SystemDataLastModifiedBy { get; } /// The type of identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The type of identity that last modified the resource.", SerializedName = @"lastModifiedByType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string SystemDataLastModifiedByType { get; } /// /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The type of the resource. E.g. ""Microsoft.Compute/virtualMachines"" or ""Microsoft.Storage/storageAccounts""", SerializedName = @"type", PossibleTypes = new [] { typeof(string) })] @@ -186,19 +233,21 @@ internal partial interface IResourceInternal /// /// Azure Resource Manager metadata containing createdBy and modifiedBy information. /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get; set; } /// The timestamp of resource creation (UTC). global::System.DateTime? SystemDataCreatedAt { get; set; } /// The identity that created the resource. string SystemDataCreatedBy { get; set; } /// The type of identity that created the resource. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string SystemDataCreatedByType { get; set; } /// The timestamp of resource last modification (UTC) global::System.DateTime? SystemDataLastModifiedAt { get; set; } /// The identity that last modified the resource. string SystemDataLastModifiedBy { get; set; } /// The type of identity that last modified the resource. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string SystemDataLastModifiedByType { get; set; } /// /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.json.cs similarity index 90% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.json.cs index d831d2f597ff..99bc8f6c3461 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/Resource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Resource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -56,13 +56,11 @@ public partial class Resource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Resource(json) : null; } @@ -79,10 +77,10 @@ internal Resource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonO { return; } - {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemData.FromJson(__jsonSystemData) : SystemData;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} - {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemData.FromJson(__jsonSystemData) : _systemData;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)_id;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)_name;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)_type;} AfterFromJson(json); } @@ -105,19 +103,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != this._systemData ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._systemData.ToJson(null,serializationMode) : null, "systemData" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.PowerShell.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.PowerShell.cs index 8f5c053bb012..cb56cfa6139d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class ResponseOption partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ResponseOption(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ResponseOption(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,17 +111,17 @@ internal ResponseOption(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Key")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Key, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Key, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Value, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -136,11 +136,11 @@ internal ResponseOption(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Key")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Key, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Key, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal)this).Value, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.TypeConverter.cs index 930218e060a6..5f0f91539c65 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.cs index 37022682bf77..72afb0ad1b66 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// The status of the resource. public partial class ResponseOption : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOptionInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOptionInternal { /// Backing field for property. @@ -41,6 +41,9 @@ public partial interface IResponseOption : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Unique string.", SerializedName = @"key", PossibleTypes = new [] { typeof(string) })] @@ -49,6 +52,9 @@ public partial interface IResponseOption : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Option description", SerializedName = @"value", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.json.cs index 9ad1d8a06068..e36956792cd9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseOption.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseOption.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ResponseOption partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ResponseOption(json) : null; } @@ -77,8 +77,8 @@ internal ResponseOption(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json { return; } - {_key = If( json?.PropertyT("key"), out var __jsonKey) ? (string)__jsonKey : (string)Key;} - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} + {_key = If( json?.PropertyT("key"), out var __jsonKey) ? (string)__jsonKey : (string)_key;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)_value;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.PowerShell.cs similarity index 67% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.PowerShell.cs index cc47e4d3e0ac..6a6fce3be76b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class ResponseValidationProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ResponseValidationProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ResponseValidationProperties(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,29 +111,29 @@ internal ResponseValidationProperties(global::System.Collections.IDictionary con // actually deserialize if (content.Contains("Regex")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).Regex = (string) content.GetValueForProperty("Regex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).Regex, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).Regex = (string) content.GetValueForProperty("Regex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).Regex, global::System.Convert.ToString); } if (content.Contains("ValidationScope")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationScope = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope?) content.GetValueForProperty("ValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationScope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationScope = (string) content.GetValueForProperty("ValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationScope, global::System.Convert.ToString); } if (content.Contains("IsRequired")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).IsRequired = (bool?) content.GetValueForProperty("IsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).IsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).IsRequired = (bool?) content.GetValueForProperty("IsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).IsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ValidationErrorMessage")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationErrorMessage = (string) content.GetValueForProperty("ValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationErrorMessage = (string) content.GetValueForProperty("ValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationErrorMessage, global::System.Convert.ToString); } if (content.Contains("MaxLength")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).MaxLength = (long?) content.GetValueForProperty("MaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).MaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).MaxLength = (long?) content.GetValueForProperty("MaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).MaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -150,23 +148,23 @@ internal ResponseValidationProperties(global::System.Management.Automation.PSObj // actually deserialize if (content.Contains("Regex")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).Regex = (string) content.GetValueForProperty("Regex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).Regex, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).Regex = (string) content.GetValueForProperty("Regex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).Regex, global::System.Convert.ToString); } if (content.Contains("ValidationScope")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationScope = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope?) content.GetValueForProperty("ValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationScope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationScope = (string) content.GetValueForProperty("ValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationScope, global::System.Convert.ToString); } if (content.Contains("IsRequired")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).IsRequired = (bool?) content.GetValueForProperty("IsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).IsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).IsRequired = (bool?) content.GetValueForProperty("IsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).IsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ValidationErrorMessage")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationErrorMessage = (string) content.GetValueForProperty("ValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).ValidationErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationErrorMessage = (string) content.GetValueForProperty("ValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).ValidationErrorMessage, global::System.Convert.ToString); } if (content.Contains("MaxLength")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).MaxLength = (long?) content.GetValueForProperty("MaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)this).MaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).MaxLength = (long?) content.GetValueForProperty("MaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)this).MaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.TypeConverter.cs index 666a3d637109..9ac289dacde0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.cs index 60e3e098b013..e9d5607c801c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Troubleshooter step input response validation properties public partial class ResponseValidationProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal { /// Backing field for property. @@ -42,11 +42,11 @@ public partial class ResponseValidationProperties : public string ValidationErrorMessage { get => this._validationErrorMessage; set => this._validationErrorMessage = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? _validationScope; + private string _validationScope; /// Validation scope [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? ValidationScope { get => this._validationScope; set => this._validationScope = value; } + public string ValidationScope { get => this._validationScope; set => this._validationScope = value; } /// Creates an new instance. public ResponseValidationProperties() @@ -62,6 +62,9 @@ public partial interface IResponseValidationProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Default True", SerializedName = @"isRequired", PossibleTypes = new [] { typeof(bool) })] @@ -70,6 +73,9 @@ public partial interface IResponseValidationProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Max text input (open Ended Text).", SerializedName = @"maxLength", PossibleTypes = new [] { typeof(long) })] @@ -78,6 +84,9 @@ public partial interface IResponseValidationProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Regex used for the input validation.", SerializedName = @"regex", PossibleTypes = new [] { typeof(string) })] @@ -86,6 +95,9 @@ public partial interface IResponseValidationProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Validation Error Message.", SerializedName = @"validationErrorMessage", PossibleTypes = new [] { typeof(string) })] @@ -94,10 +106,14 @@ public partial interface IResponseValidationProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Validation scope", SerializedName = @"validationScope", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? ValidationScope { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("None", "URLFormat", "GuidFormat", "IpAddressFormat", "NumberOnlyFormat")] + string ValidationScope { get; set; } } /// Troubleshooter step input response validation properties @@ -113,7 +129,8 @@ internal partial interface IResponseValidationPropertiesInternal /// Validation Error Message. string ValidationErrorMessage { get; set; } /// Validation scope - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? ValidationScope { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("None", "URLFormat", "GuidFormat", "IpAddressFormat", "NumberOnlyFormat")] + string ValidationScope { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.json.cs index d59750742ae5..fede87f795d0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/ResponseValidationProperties.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/ResponseValidationProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ResponseValidationProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new ResponseValidationProperties(json) : null; } @@ -77,11 +77,11 @@ internal ResponseValidationProperties(Microsoft.Azure.PowerShell.Cmdlets.SelfHel { return; } - {_regex = If( json?.PropertyT("regex"), out var __jsonRegex) ? (string)__jsonRegex : (string)Regex;} - {_validationScope = If( json?.PropertyT("validationScope"), out var __jsonValidationScope) ? (string)__jsonValidationScope : (string)ValidationScope;} - {_isRequired = If( json?.PropertyT("isRequired"), out var __jsonIsRequired) ? (bool?)__jsonIsRequired : IsRequired;} - {_validationErrorMessage = If( json?.PropertyT("validationErrorMessage"), out var __jsonValidationErrorMessage) ? (string)__jsonValidationErrorMessage : (string)ValidationErrorMessage;} - {_maxLength = If( json?.PropertyT("maxLength"), out var __jsonMaxLength) ? (long?)__jsonMaxLength : MaxLength;} + {_regex = If( json?.PropertyT("regex"), out var __jsonRegex) ? (string)__jsonRegex : (string)_regex;} + {_validationScope = If( json?.PropertyT("validationScope"), out var __jsonValidationScope) ? (string)__jsonValidationScope : (string)_validationScope;} + {_isRequired = If( json?.PropertyT("isRequired"), out var __jsonIsRequired) ? (bool?)__jsonIsRequired : _isRequired;} + {_validationErrorMessage = If( json?.PropertyT("validationErrorMessage"), out var __jsonValidationErrorMessage) ? (string)__jsonValidationErrorMessage : (string)_validationErrorMessage;} + {_maxLength = If( json?.PropertyT("maxLength"), out var __jsonMaxLength) ? (long?)__jsonMaxLength : _maxLength;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.PowerShell.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.PowerShell.cs index 274d42b88167..9845617480f0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class RestartTroubleshooterResponse partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new RestartTroubleshooterResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new RestartTroubleshooterResponse(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +111,17 @@ internal RestartTroubleshooterResponse(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("TroubleshooterResourceName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName = (string) content.GetValueForProperty("TroubleshooterResourceName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName = (string) content.GetValueForProperty("TroubleshooterResourceName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName, global::System.Convert.ToString); } if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).Location, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +136,11 @@ internal RestartTroubleshooterResponse(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("TroubleshooterResourceName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName = (string) content.GetValueForProperty("TroubleshooterResourceName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName = (string) content.GetValueForProperty("TroubleshooterResourceName",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).TroubleshooterResourceName, global::System.Convert.ToString); } if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).Location, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.TypeConverter.cs index 824e5c1ebc66..237bbfc7dd8a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.cs similarity index 81% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.cs index c0d93eab6bef..28824c1b21dc 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Troubleshooter restart response public partial class RestartTroubleshooterResponse : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IHeaderSerializable { @@ -21,7 +21,7 @@ public partial class RestartTroubleshooterResponse : public string Location { get => this._location; set => this._location = value; } /// Internal Acessors for TroubleshooterResourceName - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal.TroubleshooterResourceName { get => this._troubleshooterResourceName; set { {_troubleshooterResourceName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal.TroubleshooterResourceName { get => this._troubleshooterResourceName; set { {_troubleshooterResourceName = value;} } } /// Backing field for property. private string _troubleshooterResourceName; @@ -35,7 +35,7 @@ void Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IHeaderSerializable.Rea { if (headers.TryGetValues("Location", out var __locationHeader0)) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponseInternal)this).Location = System.Linq.Enumerable.FirstOrDefault(__locationHeader0) is string __headerLocationHeader0 ? __headerLocationHeader0 : (string)null; + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponseInternal)this).Location = System.Linq.Enumerable.FirstOrDefault(__locationHeader0) is string __headerLocationHeader0 ? __headerLocationHeader0 : (string)null; } } @@ -52,6 +52,9 @@ public partial interface IRestartTroubleshooterResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"Location", PossibleTypes = new [] { typeof(string) })] @@ -60,6 +63,9 @@ public partial interface IRestartTroubleshooterResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Updated TroubleshooterResource Name .", SerializedName = @"troubleshooterResourceName", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.json.cs index bc753cc33466..1cfdd2cdaa96 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/RestartTroubleshooterResponse.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/RestartTroubleshooterResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class RestartTroubleshooterResponse partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new RestartTroubleshooterResponse(json) : null; } @@ -77,7 +77,7 @@ internal RestartTroubleshooterResponse(Microsoft.Azure.PowerShell.Cmdlets.SelfHe { return; } - {_troubleshooterResourceName = If( json?.PropertyT("troubleshooterResourceName"), out var __jsonTroubleshooterResourceName) ? (string)__jsonTroubleshooterResourceName : (string)TroubleshooterResourceName;} + {_troubleshooterResourceName = If( json?.PropertyT("troubleshooterResourceName"), out var __jsonTroubleshooterResourceName) ? (string)__jsonTroubleshooterResourceName : (string)_troubleshooterResourceName;} AfterFromJson(json); } @@ -100,7 +100,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._troubleshooterResourceName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._troubleshooterResourceName.ToString()) : null, "troubleshooterResourceName" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.PowerShell.cs similarity index 64% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.PowerShell.cs index 3fb83550a874..1e5cb4716644 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class SearchResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SearchResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SearchResult(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,41 +111,41 @@ internal SearchResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Confidence")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Confidence = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence?) content.GetValueForProperty("Confidence",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Confidence, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Confidence = (string) content.GetValueForProperty("Confidence",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Confidence, global::System.Convert.ToString); } if (content.Contains("Source")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Source, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Source, global::System.Convert.ToString); } if (content.Contains("ResultType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).ResultType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType?) content.GetValueForProperty("ResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).ResultType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).ResultType = (string) content.GetValueForProperty("ResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).ResultType, global::System.Convert.ToString); } if (content.Contains("Rank")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Rank = (int?) content.GetValueForProperty("Rank",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Rank, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Rank = (int?) content.GetValueForProperty("Rank",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Rank, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("Link")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Link = (string) content.GetValueForProperty("Link",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Link, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Link = (string) content.GetValueForProperty("Link",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Link, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -160,35 +160,35 @@ internal SearchResult(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Confidence")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Confidence = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence?) content.GetValueForProperty("Confidence",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Confidence, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Confidence = (string) content.GetValueForProperty("Confidence",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Confidence, global::System.Convert.ToString); } if (content.Contains("Source")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Source, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Source, global::System.Convert.ToString); } if (content.Contains("ResultType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).ResultType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType?) content.GetValueForProperty("ResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).ResultType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).ResultType = (string) content.GetValueForProperty("ResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).ResultType, global::System.Convert.ToString); } if (content.Contains("Rank")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Rank = (int?) content.GetValueForProperty("Rank",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Rank, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Rank = (int?) content.GetValueForProperty("Rank",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Rank, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("Link")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Link = (string) content.GetValueForProperty("Link",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal)this).Link, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Link = (string) content.GetValueForProperty("Link",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal)this).Link, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.TypeConverter.cs index 72d4376fd5fb..4db0f5310de1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.cs index ec29ada69936..342a89f545ef 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Details of an AzureKB search result. public partial class SearchResult : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResultInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence? _confidence; + private string _confidence; /// Confidence of the search result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence? Confidence { get => this._confidence; set => this._confidence = value; } + public string Confidence { get => this._confidence; set => this._confidence = value; } /// Backing field for property. private string _content; @@ -42,11 +42,11 @@ public partial class SearchResult : public int? Rank { get => this._rank; set => this._rank = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType? _resultType; + private string _resultType; /// Result type of the search result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType? ResultType { get => this._resultType; set => this._resultType = value; } + public string ResultType { get => this._resultType; set => this._resultType = value; } /// Backing field for property. private string _solutionId; @@ -83,14 +83,21 @@ public partial interface ISearchResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Confidence of the search result.", SerializedName = @"confidence", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence? Confidence { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Low", "Medium", "High")] + string Confidence { get; set; } /// Content of the search result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Content of the search result.", SerializedName = @"content", PossibleTypes = new [] { typeof(string) })] @@ -99,6 +106,9 @@ public partial interface ISearchResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Link to the document.", SerializedName = @"link", PossibleTypes = new [] { typeof(string) })] @@ -107,6 +117,9 @@ public partial interface ISearchResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"rank of the search result", SerializedName = @"rank", PossibleTypes = new [] { typeof(int) })] @@ -115,14 +128,21 @@ public partial interface ISearchResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Result type of the search result.", SerializedName = @"resultType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType? ResultType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Community", "Documentation")] + string ResultType { get; set; } /// Unique id of the result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Unique id of the result.", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -131,6 +151,9 @@ public partial interface ISearchResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Source of the search result.", SerializedName = @"source", PossibleTypes = new [] { typeof(string) })] @@ -139,6 +162,9 @@ public partial interface ISearchResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Title of the search result.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -150,7 +176,8 @@ internal partial interface ISearchResultInternal { /// Confidence of the search result. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence? Confidence { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Low", "Medium", "High")] + string Confidence { get; set; } /// Content of the search result. string Content { get; set; } /// Link to the document. @@ -158,7 +185,8 @@ internal partial interface ISearchResultInternal /// rank of the search result int? Rank { get; set; } /// Result type of the search result. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType? ResultType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Community", "Documentation")] + string ResultType { get; set; } /// Unique id of the result. string SolutionId { get; set; } /// Source of the search result. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.json.cs index 78d83311e64c..b3dfb7af321c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SearchResult.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SearchResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SearchResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SearchResult(json) : null; } @@ -77,14 +77,14 @@ internal SearchResult(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.J { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)Content;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_confidence = If( json?.PropertyT("confidence"), out var __jsonConfidence) ? (string)__jsonConfidence : (string)Confidence;} - {_source = If( json?.PropertyT("source"), out var __jsonSource) ? (string)__jsonSource : (string)Source;} - {_resultType = If( json?.PropertyT("resultType"), out var __jsonResultType) ? (string)__jsonResultType : (string)ResultType;} - {_rank = If( json?.PropertyT("rank"), out var __jsonRank) ? (int?)__jsonRank : Rank;} - {_link = If( json?.PropertyT("link"), out var __jsonLink) ? (string)__jsonLink : (string)Link;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)_content;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_confidence = If( json?.PropertyT("confidence"), out var __jsonConfidence) ? (string)__jsonConfidence : (string)_confidence;} + {_source = If( json?.PropertyT("source"), out var __jsonSource) ? (string)__jsonSource : (string)_source;} + {_resultType = If( json?.PropertyT("resultType"), out var __jsonResultType) ? (string)__jsonResultType : (string)_resultType;} + {_rank = If( json?.PropertyT("rank"), out var __jsonRank) ? (int?)__jsonRank : _rank;} + {_link = If( json?.PropertyT("link"), out var __jsonLink) ? (string)__jsonLink : (string)_link;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.PowerShell.cs similarity index 51% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.PowerShell.cs index d13be5a6a251..ed154856478b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Section partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Section(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Section(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,45 +111,45 @@ internal Section(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ReplacementMap")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("ReplacementMapWebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapDiagnostic")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapTroubleshooter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapMetricsBasedChart")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -164,39 +164,39 @@ internal Section(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("ReplacementMap")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("ReplacementMapWebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapDiagnostic")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapDiagnostic = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsDiagnosticTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapTroubleshooter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapTroubleshooter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapMetricsBasedChart")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapMetricsBasedChart = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.MetricsBasedChartTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.TypeConverter.cs index d910bf950d97..9c493aa24ae1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.cs similarity index 54% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.cs index eb0b3e80d33c..6df2b28addf6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Part of the solution and are dividers in the solution rendering. public partial class Section : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal { /// Backing field for property. @@ -21,40 +21,40 @@ public partial class Section : public string Content { get => this._content; set => this._content = value; } /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMaps()); set { {_replacementMap = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMaps()); set { {_replacementMap = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps _replacementMap; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps _replacementMap; /// Solution replacement maps. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMaps()); set => this._replacementMap = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMaps()); set => this._replacementMap = value; } /// Solution diagnostics results. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Diagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Diagnostic = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Diagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Diagnostic = value ?? null /* arrayOf */; } /// Solution metrics based charts [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart = value ?? null /* arrayOf */; } /// Solutions Troubleshooters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Troubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Troubleshooter = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Troubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Troubleshooter = value ?? null /* arrayOf */; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } /// Backing field for property. private string _title; @@ -77,6 +77,9 @@ public partial interface ISection : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution sections content.", SerializedName = @"content", PossibleTypes = new [] { typeof(string) })] @@ -85,56 +88,77 @@ public partial interface ISection : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution diagnostics results.", SerializedName = @"diagnostics", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic) })] + System.Collections.Generic.List ReplacementMapDiagnostic { get; set; } /// Solution metrics based charts [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution metrics based charts", SerializedName = @"metricsBasedCharts", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart) })] + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; set; } /// Solutions Troubleshooters [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solutions Troubleshooters", SerializedName = @"troubleshooters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters) })] + System.Collections.Generic.List ReplacementMapTroubleshooter { get; set; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; set; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Group of Videos", SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution AzureKB results", SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; set; } /// Solution sections title. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution sections title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -148,21 +172,21 @@ internal partial interface ISectionInternal /// Solution sections content. string Content { get; set; } /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMaps ReplacementMap { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ReplacementMap { get; set; } /// Solution diagnostics results. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[] ReplacementMapDiagnostic { get; set; } + System.Collections.Generic.List ReplacementMapDiagnostic { get; set; } /// Solution metrics based charts - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[] ReplacementMapMetricsBasedChart { get; set; } + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; set; } /// Solutions Troubleshooters - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[] ReplacementMapTroubleshooter { get; set; } + System.Collections.Generic.List ReplacementMapTroubleshooter { get; set; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } + System.Collections.Generic.List ReplacementMapVideo { get; set; } /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } + System.Collections.Generic.List ReplacementMapWebResult { get; set; } /// Solution sections title. string Title { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.json.cs index e83530f9f3d7..751c820e188b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Section.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Section.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class Section partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Section(json) : null; } @@ -77,9 +75,9 @@ internal Section(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonOb { return; } - {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMaps.FromJson(__jsonReplacementMaps) : ReplacementMap;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)Content;} + {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMaps.FromJson(__jsonReplacementMaps) : _replacementMap;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)_content;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.PowerShell.cs similarity index 59% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.PowerShell.cs index 7e67cc3027c6..88859172480b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class SectionSelfHelp partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SectionSelfHelp(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SectionSelfHelp(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,33 +111,33 @@ internal SectionSelfHelp(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ReplacementMap")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("ReplacementMapWebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -152,27 +152,27 @@ internal SectionSelfHelp(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("ReplacementMap")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("ReplacementMapWebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.TypeConverter.cs index f3ba4894f7df..c89657aaae8f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.cs similarity index 60% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.cs index 96814c7d37db..46ffd1fd9f50 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Part of the solution and are dividers in the solution rendering. public partial class SectionSelfHelp : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal { /// Backing field for property. @@ -21,28 +21,28 @@ public partial class SectionSelfHelp : public string Content { get => this._content; set => this._content = value; } /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelpInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelp()); set { {_replacementMap = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelpInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelp()); set { {_replacementMap = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp _replacementMap; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp _replacementMap; /// Solution replacement maps. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelp()); set => this._replacementMap = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelp()); set => this._replacementMap = value; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } /// Backing field for property. private string _title; @@ -65,6 +65,9 @@ public partial interface ISectionSelfHelp : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution sections content.", SerializedName = @"content", PossibleTypes = new [] { typeof(string) })] @@ -75,30 +78,42 @@ public partial interface ISectionSelfHelp : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; set; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Group of Videos", SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution AzureKB results", SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; set; } /// Solution sections title. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution sections title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -112,15 +127,15 @@ internal partial interface ISectionSelfHelpInternal /// Solution sections content. string Content { get; set; } /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp ReplacementMap { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp ReplacementMap { get; set; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } + System.Collections.Generic.List ReplacementMapVideo { get; set; } /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } + System.Collections.Generic.List ReplacementMapWebResult { get; set; } /// Solution sections title. string Title { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.json.cs index 8037fcb26b6d..f44805d4ab95 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SectionSelfHelp.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SectionSelfHelp.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SectionSelfHelp partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SectionSelfHelp(json) : null; } @@ -77,9 +77,9 @@ internal SectionSelfHelp(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Jso { return; } - {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelp.FromJson(__jsonReplacementMaps) : ReplacementMap;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)Content;} + {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelp.FromJson(__jsonReplacementMaps) : _replacementMap;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)_content;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.cs index ae78887f0245..d483ca40ce8a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.cs @@ -85,6 +85,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Unique resource name for insight resources", SerializedName = @"diagnosticsResourceName", PossibleTypes = new [] { typeof(string) })] @@ -93,6 +96,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Resource identity path", SerializedName = @"id", PossibleTypes = new [] { typeof(string) })] @@ -103,6 +109,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", SerializedName = @"scope", PossibleTypes = new [] { typeof(string) })] @@ -111,6 +120,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Simplified Solutions Resource Name.", SerializedName = @"simplifiedSolutionsResourceName", PossibleTypes = new [] { typeof(string) })] @@ -121,6 +133,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -129,6 +144,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution resource Name.", SerializedName = @"solutionResourceName", PossibleTypes = new [] { typeof(string) })] @@ -137,6 +155,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The ID of the target subscription. The value must be an UUID.", SerializedName = @"subscriptionId", PossibleTypes = new [] { typeof(string) })] @@ -145,6 +166,9 @@ public partial interface ISelfHelpIdentity : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Troubleshooter resource Name.", SerializedName = @"troubleshooterName", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.json.cs index a123a20415e3..6d90c4a20b5d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SelfHelpIdentity.json.cs @@ -76,14 +76,14 @@ internal SelfHelpIdentity(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Js { return; } - {_scope = If( json?.PropertyT("scope"), out var __jsonScope) ? (string)__jsonScope : (string)Scope;} - {_diagnosticsResourceName = If( json?.PropertyT("diagnosticsResourceName"), out var __jsonDiagnosticsResourceName) ? (string)__jsonDiagnosticsResourceName : (string)DiagnosticsResourceName;} - {_solutionResourceName = If( json?.PropertyT("solutionResourceName"), out var __jsonSolutionResourceName) ? (string)__jsonSolutionResourceName : (string)SolutionResourceName;} - {_simplifiedSolutionsResourceName = If( json?.PropertyT("simplifiedSolutionsResourceName"), out var __jsonSimplifiedSolutionsResourceName) ? (string)__jsonSimplifiedSolutionsResourceName : (string)SimplifiedSolutionsResourceName;} - {_troubleshooterName = If( json?.PropertyT("troubleshooterName"), out var __jsonTroubleshooterName) ? (string)__jsonTroubleshooterName : (string)TroubleshooterName;} - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_scope = If( json?.PropertyT("scope"), out var __jsonScope) ? (string)__jsonScope : (string)_scope;} + {_diagnosticsResourceName = If( json?.PropertyT("diagnosticsResourceName"), out var __jsonDiagnosticsResourceName) ? (string)__jsonDiagnosticsResourceName : (string)_diagnosticsResourceName;} + {_solutionResourceName = If( json?.PropertyT("solutionResourceName"), out var __jsonSolutionResourceName) ? (string)__jsonSolutionResourceName : (string)_solutionResourceName;} + {_simplifiedSolutionsResourceName = If( json?.PropertyT("simplifiedSolutionsResourceName"), out var __jsonSimplifiedSolutionsResourceName) ? (string)__jsonSimplifiedSolutionsResourceName : (string)_simplifiedSolutionsResourceName;} + {_troubleshooterName = If( json?.PropertyT("troubleshooterName"), out var __jsonTroubleshooterName) ? (string)__jsonTroubleshooterName : (string)_troubleshooterName;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)_subscriptionId;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)_id;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.PowerShell.cs new file mode 100644 index 000000000000..b3ba44a7abbc --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.PowerShell.cs @@ -0,0 +1,292 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Simplified Solutions response. + [System.ComponentModel.TypeConverter(typeof(SimplifiedSolutionsResourceTypeConverter))] + public partial class SimplifiedSolutionsResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SimplifiedSolutionsResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SimplifiedSolutionsResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SimplifiedSolutionsResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Appendix")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SimplifiedSolutionsResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Appendix")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Simplified Solutions response. + [System.ComponentModel.TypeConverter(typeof(SimplifiedSolutionsResourceTypeConverter))] + public partial interface ISimplifiedSolutionsResource + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.TypeConverter.cs index 6dbd02f8f802..60a74ccb255a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.cs similarity index 50% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.cs index 9c7e3e68a66b..2d14b2cbd27b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.cs @@ -3,80 +3,98 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Simplified Solutions response. public partial class SimplifiedSolutionsResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates { /// - /// Backing field for Inherited model + /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); /// Additional parameter response for Simplified Solutions [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Appendix; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Appendix; } /// The HTML content that needs to be rendered and shown to customer. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Content; } + public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Content; } /// /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } - /// Internal Acessors for Appendix - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal.Appendix { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Appendix; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Appendix = value; } + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } - /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Content = value; } + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourceProperties()); set { {_property = value;} } } + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } - /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).ProvisioningState = value; } + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } - /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Title = value; } + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// Internal Acessors for Appendix + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal.Appendix { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Appendix; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Appendix = value ?? null /* model class */; } + + /// Internal Acessors for Content + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Content = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourceProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).ProvisioningState = value ?? null; } + + /// Internal Acessors for Title + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Title = value ?? null; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } /// Client input parameters to run Simplified Solutions [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Parameter = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Parameter = value ?? null /* model class */; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties _property; /// Simplified Solutions result [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourceProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourceProperties()); set => this._property = value; } /// Status of Simplified Solution provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).ProvisioningState; } + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).ProvisioningState; } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] @@ -84,47 +102,47 @@ public partial class SimplifiedSolutionsResource : /// Solution Id to identify single Simplified Solution. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).SolutionId = value ?? null; } + public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).SolutionId = value ?? null; } /// /// Azure Resource Manager metadata containing createdBy and modifiedBy information. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } /// The timestamp of resource creation (UTC). [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } /// The identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } /// The type of identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } /// The timestamp of resource last modification (UTC) [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } /// The identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } /// The type of identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } /// The title. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)Property).Title; } + public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)Property).Title; } /// /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } /// Creates an new instance. public SimplifiedSolutionsResource() @@ -140,27 +158,33 @@ public SimplifiedSolutionsResource() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); } } /// Simplified Solutions response. public partial interface ISimplifiedSolutionsResource : Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource { /// Additional parameter response for Simplified Solutions [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Additional parameter response for Simplified Solutions", SerializedName = @"appendix", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; } /// The HTML content that needs to be rendered and shown to customer. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The HTML content that needs to be rendered and shown to customer.", SerializedName = @"content", PossibleTypes = new [] { typeof(string) })] @@ -169,22 +193,32 @@ public partial interface ISimplifiedSolutionsResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Client input parameters to run Simplified Solutions", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } /// Status of Simplified Solution provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Status of Simplified Solution provisioning.", SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } /// Solution Id to identify single Simplified Solution. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id to identify single Simplified Solution.", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -193,6 +227,9 @@ public partial interface ISimplifiedSolutionsResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -201,18 +238,19 @@ public partial interface ISimplifiedSolutionsResource : } /// Simplified Solutions response. internal partial interface ISimplifiedSolutionsResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal { /// Additional parameter response for Simplified Solutions - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; set; } /// The HTML content that needs to be rendered and shown to customer. string Content { get; set; } /// Client input parameters to run Simplified Solutions - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } /// Simplified Solutions result - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties Property { get; set; } /// Status of Simplified Solution provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } /// Solution Id to identify single Simplified Solution. string SolutionId { get; set; } /// The title. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.json.cs similarity index 90% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.json.cs index 71f83619f6a3..7f39f5c95668 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SimplifiedSolutionsResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SimplifiedSolutionsResource(json) : null; } @@ -77,8 +77,8 @@ internal SimplifiedSolutionsResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourceProperties.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourceProperties.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.PowerShell.cs similarity index 61% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.PowerShell.cs index bd065968625b..df738e9d3dc9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SimplifiedSolutionsResourceProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SimplifiedSolutionsResourceProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SimplifiedSolutionsResourceProperties(content); } @@ -98,10 +96,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -116,33 +114,33 @@ internal SimplifiedSolutionsResourceProperties(global::System.Collections.IDicti // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Appendix")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -157,27 +155,27 @@ internal SimplifiedSolutionsResourceProperties(global::System.Management.Automat // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParametersTypeConverter.ConvertFrom); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Appendix")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix) content.GetValueForProperty("Appendix",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Appendix, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendixTypeConverter.ConvertFrom); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.TypeConverter.cs index 9bfbf5290693..77538cfa96ae 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -109,14 +109,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.cs similarity index 65% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.cs index b41ee41e7562..185f64bf9908 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Simplified Solutions result public partial class SimplifiedSolutionsResourceProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix _appendix; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix _appendix; /// Additional parameter response for Simplified Solutions [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get => (this._appendix = this._appendix ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendix()); } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get => (this._appendix = this._appendix ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendix()); } /// Backing field for property. private string _content; @@ -28,30 +28,30 @@ public partial class SimplifiedSolutionsResourceProperties : public string Content { get => this._content; } /// Internal Acessors for Appendix - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal.Appendix { get => (this._appendix = this._appendix ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendix()); set { {_appendix = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal.Appendix { get => (this._appendix = this._appendix ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendix()); set { {_appendix = value;} } } /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal.Content { get => this._content; set { {_content = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal.Content { get => this._content; set { {_content = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesInternal.Title { get => this._title; set { {_title = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesInternal.Title { get => this._title; set { {_title = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters _parameter; /// Client input parameters to run Simplified Solutions [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParameters()); set => this._parameter = value; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParameters()); set => this._parameter = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? _provisioningState; + private string _provisioningState; /// Status of Simplified Solution provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get => this._provisioningState; } + public string ProvisioningState { get => this._provisioningState; } /// Backing field for property. private string _solutionId; @@ -81,14 +81,20 @@ public partial interface ISimplifiedSolutionsResourceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Additional parameter response for Simplified Solutions", SerializedName = @"appendix", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; } /// The HTML content that needs to be rendered and shown to customer. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The HTML content that needs to be rendered and shown to customer.", SerializedName = @"content", PossibleTypes = new [] { typeof(string) })] @@ -97,22 +103,32 @@ public partial interface ISimplifiedSolutionsResourceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Client input parameters to run Simplified Solutions", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } /// Status of Simplified Solution provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Status of Simplified Solution provisioning.", SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } /// Solution Id to identify single Simplified Solution. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id to identify single Simplified Solution.", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -121,6 +137,9 @@ public partial interface ISimplifiedSolutionsResourceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -132,13 +151,14 @@ internal partial interface ISimplifiedSolutionsResourcePropertiesInternal { /// Additional parameter response for Simplified Solutions - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix Appendix { get; set; } /// The HTML content that needs to be rendered and shown to customer. string Content { get; set; } /// Client input parameters to run Simplified Solutions - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get; set; } /// Status of Simplified Solution provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState? ProvisioningState { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } /// Solution Id to identify single Simplified Solution. string SolutionId { get; set; } /// The title. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.json.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.json.cs index 46a16fdb1a4c..8387774c0326 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourceProperties.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourceProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SimplifiedSolutionsResourceProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SimplifiedSolutionsResourceProperties(json) : null; } @@ -77,12 +77,12 @@ internal SimplifiedSolutionsResourceProperties(Microsoft.Azure.PowerShell.Cmdlet { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParameters.FromJson(__jsonParameters) : Parameter;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_appendix = If( json?.PropertyT("appendix"), out var __jsonAppendix) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendix.FromJson(__jsonAppendix) : Appendix;} - {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)Content;} - {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParameters.FromJson(__jsonParameters) : _parameter;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_appendix = If( json?.PropertyT("appendix"), out var __jsonAppendix) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendix.FromJson(__jsonAppendix) : _appendix;} + {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)_content;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)_provisioningState;} AfterFromJson(json); } @@ -108,19 +108,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( } AddIf( null != (((object)this._solutionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._solutionId.ToString()) : null, "solutionId" ,container.Add ); AddIf( null != this._parameter ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._parameter.ToJson(null,serializationMode) : null, "parameters" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._title)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._title.ToString()) : null, "title" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != this._appendix ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._appendix.ToJson(null,serializationMode) : null, "appendix" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._content)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._content.ToString()) : null, "content" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs index 1f88e8a7e144..4a3177efeef1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SimplifiedSolutionsResourcePropertiesAppendix partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SimplifiedSolutionsResourcePropertiesAppendix(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SimplifiedSolutionsResourcePropertiesAppendix(content); } @@ -98,10 +98,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -120,7 +120,7 @@ internal SimplifiedSolutionsResourcePropertiesAppendix(global::System.Collection } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs index 60428c0b642d..aa230f7671fe 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -110,14 +110,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.cs index 57d5430930de..32b9a4b54578 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Additional parameter response for Simplified Solutions public partial class SimplifiedSolutionsResourcePropertiesAppendix : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendixInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendixInternal { /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs index 6769183a2065..42d6779648d5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesAppendix source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesAppendix source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.json.cs index a5855c35c16b..6b5bffdb32a8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesAppendix.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesAppendix.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SimplifiedSolutionsResourcePropertiesAppendix partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SimplifiedSolutionsResourcePropertiesAppendix(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs index da98ccccdc85..22c49eb5f4d8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SimplifiedSolutionsResourcePropertiesParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SimplifiedSolutionsResourcePropertiesParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SimplifiedSolutionsResourcePropertiesParameters(content); } @@ -98,10 +98,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -120,7 +120,7 @@ internal SimplifiedSolutionsResourcePropertiesParameters(global::System.Collecti } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs index ef726251c8f9..76cab5c8393c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -112,14 +112,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// an instance of , or null if there is no suitable /// conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.cs index 036191ac1840..66fa77b0951b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Client input parameters to run Simplified Solutions public partial class SimplifiedSolutionsResourcePropertiesParameters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParametersInternal { /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs index bf0d2b27bb16..59d9f172e368 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResourcePropertiesParameters source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResourcePropertiesParameters source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.json.cs index 1df6fb580c3a..6197dc4aaad2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SimplifiedSolutionsResourcePropertiesParameters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SimplifiedSolutionsResourcePropertiesParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SimplifiedSolutionsResourcePropertiesParameters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SimplifiedSolutionsResourcePropertiesParameters(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.PowerShell.cs similarity index 70% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.PowerShell.cs index a7aa281d57ff..bd04cf01e9cd 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionMetadataProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionMetadataProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionMetadataProperties(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,25 +111,25 @@ internal SolutionMetadataProperties(global::System.Collections.IDictionary conte // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("SolutionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType?) content.GetValueForProperty("SolutionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionType = (string) content.GetValueForProperty("SolutionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionType, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).Description, global::System.Convert.ToString); } if (content.Contains("RequiredInput")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).RequiredInput = (string[]) content.GetValueForProperty("RequiredInput",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).RequiredInput, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).RequiredInput = (System.Collections.Generic.List) content.GetValueForProperty("RequiredInput",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).RequiredInput, __y => TypeConverterExtensions.SelectToList(__y, global::System.Convert.ToString)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -146,19 +144,19 @@ internal SolutionMetadataProperties(global::System.Management.Automation.PSObjec // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("SolutionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType?) content.GetValueForProperty("SolutionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).SolutionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionType = (string) content.GetValueForProperty("SolutionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).SolutionType, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).Description, global::System.Convert.ToString); } if (content.Contains("RequiredInput")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).RequiredInput = (string[]) content.GetValueForProperty("RequiredInput",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal)this).RequiredInput, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).RequiredInput = (System.Collections.Generic.List) content.GetValueForProperty("RequiredInput",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal)this).RequiredInput, __y => TypeConverterExtensions.SelectToList(__y, global::System.Convert.ToString)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.TypeConverter.cs index dbff4be36bfe..4a6d00e16590 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.cs similarity index 69% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.cs index 6c7f8b4bf706..4eb1cccc4d97 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Metadata Properties public partial class SolutionMetadataProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal { /// Backing field for property. @@ -21,20 +21,20 @@ public partial class SolutionMetadataProperties : public string Description { get => this._description; } /// Internal Acessors for Description - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal.Description { get => this._description; set { {_description = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal.Description { get => this._description; set { {_description = value;} } } /// Internal Acessors for RequiredInput - string[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal.RequiredInput { get => this._requiredInput; set { {_requiredInput = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal.RequiredInput { get => this._requiredInput; set { {_requiredInput = value;} } } /// Internal Acessors for SolutionType - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataPropertiesInternal.SolutionType { get => this._solutionType; set { {_solutionType = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataPropertiesInternal.SolutionType { get => this._solutionType; set { {_solutionType = value;} } } /// Backing field for property. - private string[] _requiredInput; + private System.Collections.Generic.List _requiredInput; /// Required parameters for invoking this particular solution. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string[] RequiredInput { get => this._requiredInput; } + public System.Collections.Generic.List RequiredInput { get => this._requiredInput; } /// Backing field for property. private string _solutionId; @@ -44,11 +44,11 @@ public partial class SolutionMetadataProperties : public string SolutionId { get => this._solutionId; set => this._solutionId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType? _solutionType; + private string _solutionType; /// Solution Type. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType? SolutionType { get => this._solutionType; } + public string SolutionType { get => this._solutionType; } /// Creates an new instance. public SolutionMetadataProperties() @@ -64,6 +64,9 @@ public partial interface ISolutionMetadataProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"A detailed description of solution.", SerializedName = @"description", PossibleTypes = new [] { typeof(string) })] @@ -72,14 +75,20 @@ public partial interface ISolutionMetadataProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Required parameters for invoking this particular solution.", SerializedName = @"requiredInputs", PossibleTypes = new [] { typeof(string) })] - string[] RequiredInput { get; } + System.Collections.Generic.List RequiredInput { get; } /// Solution Id. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id.", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -88,10 +97,14 @@ public partial interface ISolutionMetadataProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Solution Type.", SerializedName = @"solutionType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType? SolutionType { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Diagnostics", "Solutions", "Troubleshooters", "SelfHelp")] + string SolutionType { get; } } /// Metadata Properties @@ -101,11 +114,12 @@ internal partial interface ISolutionMetadataPropertiesInternal /// A detailed description of solution. string Description { get; set; } /// Required parameters for invoking this particular solution. - string[] RequiredInput { get; set; } + System.Collections.Generic.List RequiredInput { get; set; } /// Solution Id. string SolutionId { get; set; } /// Solution Type. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType? SolutionType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Diagnostics", "Solutions", "Troubleshooters", "SelfHelp")] + string SolutionType { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.json.cs similarity index 90% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.json.cs index 7d437cff1d7a..51146652b332 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataProperties.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionMetadataProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionMetadataProperties(json) : null; } @@ -77,10 +77,10 @@ internal SolutionMetadataProperties(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp. { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_solutionType = If( json?.PropertyT("solutionType"), out var __jsonSolutionType) ? (string)__jsonSolutionType : (string)SolutionType;} - {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} - {_requiredInput = If( json?.PropertyT("requiredInputs"), out var __jsonRequiredInputs) ? If( __jsonRequiredInputs as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : RequiredInput;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_solutionType = If( json?.PropertyT("solutionType"), out var __jsonSolutionType) ? (string)__jsonSolutionType : (string)_solutionType;} + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)_description;} + {_requiredInput = If( json?.PropertyT("requiredInputs"), out var __jsonRequiredInputs) ? If( __jsonRequiredInputs as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : _requiredInput;} AfterFromJson(json); } @@ -104,15 +104,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( return container; } AddIf( null != (((object)this._solutionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._solutionId.ToString()) : null, "solutionId" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._solutionType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._solutionType.ToString()) : null, "solutionType" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._requiredInput) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.PowerShell.cs similarity index 54% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.PowerShell.cs index 6cd2b8c9e7e7..69f3b997b1d8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionMetadataResource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionMetadataResource(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionMetadataResource(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,57 +111,57 @@ internal SolutionMetadataResource(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTypeConverter.ConvertFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Solution")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -178,51 +176,51 @@ internal SolutionMetadataResource(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTypeConverter.ConvertFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Solution")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.TypeConverter.cs index fe47c9f43e7d..44a7e78fdd5e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.cs new file mode 100644 index 000000000000..5d61ae3b2bda --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.cs @@ -0,0 +1,157 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Metadata resource + public partial class SolutionMetadataResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Solutions()); set { {_property = value;} } } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions _property; + + /// Solution metadata Resource properties. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Solutions()); set => this._property = value; } + + /// List of metadata. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Solution { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal)Property).Solution; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal)Property).Solution = value ?? null /* arrayOf */; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } + + /// Creates an new instance. + public SolutionMetadataResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); + } + } + /// Metadata resource + public partial interface ISolutionMetadataResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource + { + /// List of metadata. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"List of metadata.", + SerializedName = @"solutions", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties) })] + System.Collections.Generic.List Solution { get; set; } + + } + /// Metadata resource + internal partial interface ISolutionMetadataResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal + { + /// Solution metadata Resource properties. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions Property { get; set; } + /// List of metadata. + System.Collections.Generic.List Solution { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.json.cs index ffd8aa69bc5d..a2f270a38cd5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionMetadataResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionMetadataResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionMetadataResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionMetadataResource(json) : null; } @@ -77,8 +77,8 @@ internal SolutionMetadataResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Ru { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Solutions.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Solutions.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.PowerShell.cs new file mode 100644 index 000000000000..e0d97581f014 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.PowerShell.cs @@ -0,0 +1,292 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Nlp Metadata resource + [System.ComponentModel.TypeConverter(typeof(SolutionNlpMetadataResourceTypeConverter))] + public partial class SolutionNlpMetadataResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SolutionNlpMetadataResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SolutionNlpMetadataResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SolutionNlpMetadataResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutionsTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("ProblemTitle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemTitle, global::System.Convert.ToString); + } + if (content.Contains("ProblemDescription")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemDescription, global::System.Convert.ToString); + } + if (content.Contains("ServiceId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ServiceId, global::System.Convert.ToString); + } + if (content.Contains("ProblemClassificationId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId, global::System.Convert.ToString); + } + if (content.Contains("Solution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("RelatedService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).RelatedService = (System.Collections.Generic.List) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationServiceTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SolutionNlpMetadataResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutionsTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("ProblemTitle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemTitle = (string) content.GetValueForProperty("ProblemTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemTitle, global::System.Convert.ToString); + } + if (content.Contains("ProblemDescription")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemDescription = (string) content.GetValueForProperty("ProblemDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemDescription, global::System.Convert.ToString); + } + if (content.Contains("ServiceId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ServiceId = (string) content.GetValueForProperty("ServiceId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ServiceId, global::System.Convert.ToString); + } + if (content.Contains("ProblemClassificationId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId = (string) content.GetValueForProperty("ProblemClassificationId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).ProblemClassificationId, global::System.Convert.ToString); + } + if (content.Contains("Solution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("RelatedService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).RelatedService = (System.Collections.Generic.List) content.GetValueForProperty("RelatedService",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal)this).RelatedService, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ClassificationServiceTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Nlp Metadata resource + [System.ComponentModel.TypeConverter(typeof(SolutionNlpMetadataResourceTypeConverter))] + public partial interface ISolutionNlpMetadataResource + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.TypeConverter.cs index f822569f67e9..328e5cb24b1e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.cs similarity index 51% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.cs index 5f1b5f4f35e9..0bbc241d2a76 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.cs @@ -3,112 +3,130 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Nlp Metadata resource public partial class SolutionNlpMetadataResource : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates { /// - /// Backing field for Inherited model + /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); /// /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutions()); set { {_property = value;} } } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData = value; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutions()); set { {_property = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } /// Problem Classification Id that is having the issue [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string ProblemClassificationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ProblemClassificationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ProblemClassificationId = value ?? null; } + public string ProblemClassificationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ProblemClassificationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ProblemClassificationId = value ?? null; } /// Description for given ProblemClassificationId [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string ProblemDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ProblemDescription; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ProblemDescription = value ?? null; } + public string ProblemDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ProblemDescription; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ProblemDescription = value ?? null; } /// Title for given ProblemClassificationId [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string ProblemTitle { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ProblemTitle; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ProblemTitle = value ?? null; } + public string ProblemTitle { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ProblemTitle; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ProblemTitle = value ?? null; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions _property; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions _property; /// Solution metadata Resource properties. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutions()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutions()); set => this._property = value; } /// The list of solution metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] RelatedService { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).RelatedService; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).RelatedService = value ?? null /* arrayOf */; } + public System.Collections.Generic.List RelatedService { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).RelatedService; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).RelatedService = value ?? null /* arrayOf */; } /// Service resource id that is having the problem [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string ServiceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ServiceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).ServiceId = value ?? null; } + public string ServiceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ServiceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).ServiceId = value ?? null; } /// The list of solution metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).Solution; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutionsInternal)Property).Solution = value ?? null /* arrayOf */; } + public System.Collections.Generic.List Solution { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).Solution; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutionsInternal)Property).Solution = value ?? null /* arrayOf */; } /// /// Azure Resource Manager metadata containing createdBy and modifiedBy information. /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemData; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } /// The timestamp of resource creation (UTC). [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } /// The identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } /// The type of identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } /// The timestamp of resource last modification (UTC) [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } /// The identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } /// The type of identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType)""); } + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } /// /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } /// Creates an new instance. public SolutionNlpMetadataResource() @@ -124,19 +142,22 @@ public SolutionNlpMetadataResource() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); } } /// Nlp Metadata resource public partial interface ISolutionNlpMetadataResource : Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource { /// Problem Classification Id that is having the issue [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Problem Classification Id that is having the issue", SerializedName = @"problemClassificationId", PossibleTypes = new [] { typeof(string) })] @@ -145,6 +166,9 @@ public partial interface ISolutionNlpMetadataResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Description for given ProblemClassificationId", SerializedName = @"problemDescription", PossibleTypes = new [] { typeof(string) })] @@ -153,6 +177,9 @@ public partial interface ISolutionNlpMetadataResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Title for given ProblemClassificationId", SerializedName = @"problemTitle", PossibleTypes = new [] { typeof(string) })] @@ -161,14 +188,20 @@ public partial interface ISolutionNlpMetadataResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The list of solution metadata.", SerializedName = @"relatedServices", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] RelatedService { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService) })] + System.Collections.Generic.List RelatedService { get; set; } /// Service resource id that is having the problem [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Service resource id that is having the problem", SerializedName = @"serviceId", PossibleTypes = new [] { typeof(string) })] @@ -177,15 +210,18 @@ public partial interface ISolutionNlpMetadataResource : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The list of solution metadata.", SerializedName = @"solutions", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties) })] + System.Collections.Generic.List Solution { get; set; } } /// Nlp Metadata resource internal partial interface ISolutionNlpMetadataResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal { /// Problem Classification Id that is having the issue string ProblemClassificationId { get; set; } @@ -194,13 +230,13 @@ internal partial interface ISolutionNlpMetadataResourceInternal : /// Title for given ProblemClassificationId string ProblemTitle { get; set; } /// Solution metadata Resource properties. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.INlpSolutions Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.INlpSolutions Property { get; set; } /// The list of solution metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[] RelatedService { get; set; } + System.Collections.Generic.List RelatedService { get; set; } /// Service resource id that is having the problem string ServiceId { get; set; } /// The list of solution metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } + System.Collections.Generic.List Solution { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.json.cs index 01f4b731ff87..cc79b7c2382e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionNlpMetadataResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionNlpMetadataResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionNlpMetadataResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionNlpMetadataResource(json) : null; } @@ -77,8 +77,8 @@ internal SolutionNlpMetadataResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.NlpSolutions.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.NlpSolutions.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.PowerShell.cs new file mode 100644 index 000000000000..ce57e0dc82a7 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.PowerShell.cs @@ -0,0 +1,276 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Solution PatchRequest body + [System.ComponentModel.TypeConverter(typeof(SolutionPatchRequestBodyTypeConverter))] + public partial class SolutionPatchRequestBody + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SolutionPatchRequestBody(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SolutionPatchRequestBody(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SolutionPatchRequestBody(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); + } + if (content.Contains("TriggerCriterion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).TriggerCriterion = (System.Collections.Generic.List) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterionTypeConverter.ConvertFrom)); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapDiagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapTroubleshooter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapMetricsBasedChart")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SolutionPatchRequestBody(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); + } + if (content.Contains("TriggerCriterion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).TriggerCriterion = (System.Collections.Generic.List) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterionTypeConverter.ConvertFrom)); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapDiagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapTroubleshooter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapMetricsBasedChart")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Solution PatchRequest body + [System.ComponentModel.TypeConverter(typeof(SolutionPatchRequestBodyTypeConverter))] + public partial interface ISolutionPatchRequestBody + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.TypeConverter.cs index 86797ea2c1a4..e6743c319755 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.cs new file mode 100644 index 000000000000..97d1315c4e09 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.cs @@ -0,0 +1,313 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Solution PatchRequest body + public partial class SolutionPatchRequestBody : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal + { + + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Content; } + + /// Internal Acessors for Content + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Content = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ProvisioningState = value ?? null; } + + /// Internal Acessors for ReplacementMap + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMap { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMap; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMap = value ?? null /* model class */; } + + /// Internal Acessors for ReplacementMapDiagnostic + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapMetricsBasedChart + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapTroubleshooter + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideo + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideoGroup + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapWebResult + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult = value ?? null /* arrayOf */; } + + /// Internal Acessors for Section + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Section; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Section = value ?? null /* arrayOf */; } + + /// Internal Acessors for SolutionId + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).SolutionId = value ?? null; } + + /// Internal Acessors for Title + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBodyInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Title = value ?? null; } + + /// Client input parameters to run Solution + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Parameter = value ?? null /* model class */; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties _property; + + /// Solution result + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties()); set => this._property = value; } + + /// Status of solution provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ProvisioningState; } + + /// Solution diagnostics results. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic; } + + /// Solution metrics based charts + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart; } + + /// Solutions Troubleshooters + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter; } + + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo; } + + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup; } + + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult; } + + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Section; } + + /// Solution Id to identify single solution. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).SolutionId; } + + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Title; } + + /// Solution request trigger criteria + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List TriggerCriterion { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).TriggerCriterion; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).TriggerCriterion = value ?? null /* arrayOf */; } + + /// Creates an new instance. + public SolutionPatchRequestBody() + { + + } + } + /// Solution PatchRequest body + public partial interface ISolutionPatchRequestBody : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable + { + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The HTML content that needs to be rendered and shown to customer.", + SerializedName = @"content", + PossibleTypes = new [] { typeof(string) })] + string Content { get; } + /// Client input parameters to run Solution + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Client input parameters to run Solution", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get; set; } + /// Status of solution provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Status of solution provisioning.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } + /// Solution diagnostics results. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution diagnostics results.", + SerializedName = @"diagnostics", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic) })] + System.Collections.Generic.List ReplacementMapDiagnostic { get; } + /// Solution metrics based charts + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution metrics based charts", + SerializedName = @"metricsBasedCharts", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart) })] + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; } + /// Solutions Troubleshooters + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solutions Troubleshooters", + SerializedName = @"troubleshooters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters) })] + System.Collections.Generic.List ReplacementMapTroubleshooter { get; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", + SerializedName = @"videos", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; } + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Group of Videos", + SerializedName = @"videoGroups", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; } + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution AzureKB results", + SerializedName = @"webResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; } + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"List of section object.", + SerializedName = @"sections", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection) })] + System.Collections.Generic.List Section { get; } + /// Solution Id to identify single solution. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution Id to identify single solution.", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + string SolutionId { get; } + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The title.", + SerializedName = @"title", + PossibleTypes = new [] { typeof(string) })] + string Title { get; } + /// Solution request trigger criteria + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Solution request trigger criteria", + SerializedName = @"triggerCriteria", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + System.Collections.Generic.List TriggerCriterion { get; set; } + + } + /// Solution PatchRequest body + internal partial interface ISolutionPatchRequestBodyInternal + + { + /// The HTML content that needs to be rendered and shown to customer. + string Content { get; set; } + /// Client input parameters to run Solution + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get; set; } + /// Solution result + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties Property { get; set; } + /// Status of solution provisioning. + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } + /// Solution replacement maps. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ReplacementMap { get; set; } + /// Solution diagnostics results. + System.Collections.Generic.List ReplacementMapDiagnostic { get; set; } + /// Solution metrics based charts + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; set; } + /// Solutions Troubleshooters + System.Collections.Generic.List ReplacementMapTroubleshooter { get; set; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + System.Collections.Generic.List ReplacementMapVideo { get; set; } + /// Group of Videos + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } + /// Solution AzureKB results + System.Collections.Generic.List ReplacementMapWebResult { get; set; } + /// List of section object. + System.Collections.Generic.List Section { get; set; } + /// Solution Id to identify single solution. + string SolutionId { get; set; } + /// The title. + string Title { get; set; } + /// Solution request trigger criteria + System.Collections.Generic.List TriggerCriterion { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.json.cs index 0ef60ee24088..65bc073578d8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionPatchRequestBody.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionPatchRequestBody.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionPatchRequestBody partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionPatchRequestBody(json) : null; } @@ -77,7 +77,7 @@ internal SolutionPatchRequestBody(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Ru { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.PowerShell.cs new file mode 100644 index 000000000000..6882b18d7e17 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.PowerShell.cs @@ -0,0 +1,364 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Solution response. + [System.ComponentModel.TypeConverter(typeof(SolutionResourceTypeConverter))] + public partial class SolutionResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SolutionResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SolutionResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SolutionResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); + } + if (content.Contains("TriggerCriterion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).TriggerCriterion = (System.Collections.Generic.List) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterionTypeConverter.ConvertFrom)); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapDiagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapTroubleshooter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapMetricsBasedChart")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SolutionResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); + } + if (content.Contains("TriggerCriterion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).TriggerCriterion = (System.Collections.Generic.List) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterionTypeConverter.ConvertFrom)); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapDiagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapTroubleshooter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapMetricsBasedChart")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Solution response. + [System.ComponentModel.TypeConverter(typeof(SolutionResourceTypeConverter))] + public partial interface ISolutionResource + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.TypeConverter.cs index 8cb36bbcae58..c0423b865f3e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.cs new file mode 100644 index 000000000000..30f7a9d5330b --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.cs @@ -0,0 +1,440 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Solution response. + public partial class SolutionResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IHeaderSerializable + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); + + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Content; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } + + /// Backing field for property. + private string _location; + + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// Internal Acessors for Content + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Content = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ProvisioningState = value ?? null; } + + /// Internal Acessors for ReplacementMap + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMap { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMap; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMap = value ?? null /* model class */; } + + /// Internal Acessors for ReplacementMapDiagnostic + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapMetricsBasedChart + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapTroubleshooter + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideo + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideoGroup + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapWebResult + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult = value ?? null /* arrayOf */; } + + /// Internal Acessors for Section + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Section; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Section = value ?? null /* arrayOf */; } + + /// Internal Acessors for SolutionId + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).SolutionId = value ?? null; } + + /// Internal Acessors for Title + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Title = value ?? null; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } + + /// Client input parameters to run Solution + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Parameter = value ?? null /* model class */; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties _property; + + /// Solution result + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties()); set => this._property = value; } + + /// Status of solution provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ProvisioningState; } + + /// Solution diagnostics results. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapDiagnostic; } + + /// Solution metrics based charts + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapMetricsBasedChart; } + + /// Solutions Troubleshooters + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapTroubleshooter; } + + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideo; } + + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapVideoGroup; } + + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).ReplacementMapWebResult; } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Section; } + + /// Solution Id to identify single solution. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).SolutionId; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } + + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).Title; } + + /// Solution request trigger criteria + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List TriggerCriterion { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).TriggerCriterion; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)Property).TriggerCriterion = value ?? null /* arrayOf */; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } + + /// + void Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IHeaderSerializable.ReadHeaders(global::System.Net.Http.Headers.HttpResponseHeaders headers) + { + if (headers.TryGetValues("Location", out var __locationHeader0)) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceInternal)this).Location = System.Linq.Enumerable.FirstOrDefault(__locationHeader0) is string __headerLocationHeader0 ? __headerLocationHeader0 : (string)null; + } + } + + /// Creates an new instance. + public SolutionResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); + } + } + /// Solution response. + public partial interface ISolutionResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource + { + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The HTML content that needs to be rendered and shown to customer.", + SerializedName = @"content", + PossibleTypes = new [] { typeof(string) })] + string Content { get; } + + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"", + SerializedName = @"Location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// Client input parameters to run Solution + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Client input parameters to run Solution", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get; set; } + /// Status of solution provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Status of solution provisioning.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } + /// Solution diagnostics results. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution diagnostics results.", + SerializedName = @"diagnostics", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic) })] + System.Collections.Generic.List ReplacementMapDiagnostic { get; } + /// Solution metrics based charts + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution metrics based charts", + SerializedName = @"metricsBasedCharts", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart) })] + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; } + /// Solutions Troubleshooters + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solutions Troubleshooters", + SerializedName = @"troubleshooters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters) })] + System.Collections.Generic.List ReplacementMapTroubleshooter { get; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", + SerializedName = @"videos", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; } + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Group of Videos", + SerializedName = @"videoGroups", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; } + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution AzureKB results", + SerializedName = @"webResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; } + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"List of section object.", + SerializedName = @"sections", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection) })] + System.Collections.Generic.List Section { get; } + /// Solution Id to identify single solution. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution Id to identify single solution.", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + string SolutionId { get; } + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The title.", + SerializedName = @"title", + PossibleTypes = new [] { typeof(string) })] + string Title { get; } + /// Solution request trigger criteria + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Solution request trigger criteria", + SerializedName = @"triggerCriteria", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + System.Collections.Generic.List TriggerCriterion { get; set; } + + } + /// Solution response. + internal partial interface ISolutionResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal + { + /// The HTML content that needs to be rendered and shown to customer. + string Content { get; set; } + + string Location { get; set; } + /// Client input parameters to run Solution + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get; set; } + /// Solution result + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties Property { get; set; } + /// Status of solution provisioning. + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } + /// Solution replacement maps. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ReplacementMap { get; set; } + /// Solution diagnostics results. + System.Collections.Generic.List ReplacementMapDiagnostic { get; set; } + /// Solution metrics based charts + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; set; } + /// Solutions Troubleshooters + System.Collections.Generic.List ReplacementMapTroubleshooter { get; set; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + System.Collections.Generic.List ReplacementMapVideo { get; set; } + /// Group of Videos + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } + /// Solution AzureKB results + System.Collections.Generic.List ReplacementMapWebResult { get; set; } + /// List of section object. + System.Collections.Generic.List Section { get; set; } + /// Solution Id to identify single solution. + string SolutionId { get; set; } + /// The title. + string Title { get; set; } + /// Solution request trigger criteria + System.Collections.Generic.List TriggerCriterion { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.json.cs index 8590f7857dab..95b82ab358cf 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionResource(json) : null; } @@ -77,8 +77,8 @@ internal SolutionResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Js { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceProperties.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceProperties.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.PowerShell.cs new file mode 100644 index 000000000000..28f378adf5ed --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.PowerShell.cs @@ -0,0 +1,268 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Solution result + [System.ComponentModel.TypeConverter(typeof(SolutionResourcePropertiesTypeConverter))] + public partial class SolutionResourceProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SolutionResourceProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SolutionResourceProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SolutionResourceProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); + } + if (content.Contains("TriggerCriterion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).TriggerCriterion = (System.Collections.Generic.List) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterionTypeConverter.ConvertFrom)); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapDiagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapTroubleshooter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapMetricsBasedChart")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SolutionResourceProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsTypeConverter.ConvertFrom); + } + if (content.Contains("TriggerCriterion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).TriggerCriterion = (System.Collections.Generic.List) content.GetValueForProperty("TriggerCriterion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).TriggerCriterion, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterionTypeConverter.ConvertFrom)); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParametersTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapDiagnostic")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapDiagnostic",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapDiagnostic, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsDiagnosticTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapTroubleshooter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapTroubleshooter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapTroubleshooter, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsTroubleshootersTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapMetricsBasedChart")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapMetricsBasedChart",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal)this).ReplacementMapMetricsBasedChart, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.MetricsBasedChartTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Solution result + [System.ComponentModel.TypeConverter(typeof(SolutionResourcePropertiesTypeConverter))] + public partial interface ISolutionResourceProperties + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.TypeConverter.cs index d7b43fca1b1d..bafe3e74d03f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.cs new file mode 100644 index 000000000000..daa1004e152f --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.cs @@ -0,0 +1,329 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Solution result + public partial class SolutionResourceProperties : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal + { + + /// Backing field for property. + private string _content; + + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string Content { get => this._content; } + + /// Internal Acessors for Content + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.Content { get => this._content; set { {_content = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Internal Acessors for ReplacementMap + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMaps()); set { {_replacementMap = value;} } } + + /// Internal Acessors for ReplacementMapDiagnostic + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Diagnostic; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Diagnostic = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapMetricsBasedChart + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapTroubleshooter + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Troubleshooter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Troubleshooter = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideo + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideoGroup + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapWebResult + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } + + /// Internal Acessors for Section + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.Section { get => this._section; set { {_section = value;} } } + + /// Internal Acessors for SolutionId + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.SolutionId { get => this._solutionId; set { {_solutionId = value;} } } + + /// Internal Acessors for Title + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesInternal.Title { get => this._title; set { {_title = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters _parameter; + + /// Client input parameters to run Solution + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParameters()); set => this._parameter = value; } + + /// Backing field for property. + private string _provisioningState; + + /// Status of solution provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string ProvisioningState { get => this._provisioningState; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps _replacementMap; + + /// Solution replacement maps. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMaps()); } + + /// Solution diagnostics results. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapDiagnostic { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Diagnostic; } + + /// Solution metrics based charts + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapMetricsBasedChart { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).MetricsBasedChart; } + + /// Solutions Troubleshooters + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapTroubleshooter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Troubleshooter; } + + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).Video; } + + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).VideoGroup; } + + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsInternal)ReplacementMap).WebResult; } + + /// Backing field for property. + private System.Collections.Generic.List _section; + + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public System.Collections.Generic.List Section { get => this._section; } + + /// Backing field for property. + private string _solutionId; + + /// Solution Id to identify single solution. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string SolutionId { get => this._solutionId; } + + /// Backing field for property. + private string _title; + + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string Title { get => this._title; } + + /// Backing field for property. + private System.Collections.Generic.List _triggerCriterion; + + /// Solution request trigger criteria + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public System.Collections.Generic.List TriggerCriterion { get => this._triggerCriterion; set => this._triggerCriterion = value; } + + /// Creates an new instance. + public SolutionResourceProperties() + { + + } + } + /// Solution result + public partial interface ISolutionResourceProperties : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable + { + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The HTML content that needs to be rendered and shown to customer.", + SerializedName = @"content", + PossibleTypes = new [] { typeof(string) })] + string Content { get; } + /// Client input parameters to run Solution + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Client input parameters to run Solution", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get; set; } + /// Status of solution provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Status of solution provisioning.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; } + /// Solution diagnostics results. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution diagnostics results.", + SerializedName = @"diagnostics", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic) })] + System.Collections.Generic.List ReplacementMapDiagnostic { get; } + /// Solution metrics based charts + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution metrics based charts", + SerializedName = @"metricsBasedCharts", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart) })] + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; } + /// Solutions Troubleshooters + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solutions Troubleshooters", + SerializedName = @"troubleshooters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters) })] + System.Collections.Generic.List ReplacementMapTroubleshooter { get; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", + SerializedName = @"videos", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; } + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Group of Videos", + SerializedName = @"videoGroups", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; } + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution AzureKB results", + SerializedName = @"webResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; } + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"List of section object.", + SerializedName = @"sections", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection) })] + System.Collections.Generic.List Section { get; } + /// Solution Id to identify single solution. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution Id to identify single solution.", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + string SolutionId { get; } + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The title.", + SerializedName = @"title", + PossibleTypes = new [] { typeof(string) })] + string Title { get; } + /// Solution request trigger criteria + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Solution request trigger criteria", + SerializedName = @"triggerCriteria", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + System.Collections.Generic.List TriggerCriterion { get; set; } + + } + /// Solution result + internal partial interface ISolutionResourcePropertiesInternal + + { + /// The HTML content that needs to be rendered and shown to customer. + string Content { get; set; } + /// Client input parameters to run Solution + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get; set; } + /// Status of solution provisioning. + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "PartialComplete", "Failed", "Running", "Canceled")] + string ProvisioningState { get; set; } + /// Solution replacement maps. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMaps ReplacementMap { get; set; } + /// Solution diagnostics results. + System.Collections.Generic.List ReplacementMapDiagnostic { get; set; } + /// Solution metrics based charts + System.Collections.Generic.List ReplacementMapMetricsBasedChart { get; set; } + /// Solutions Troubleshooters + System.Collections.Generic.List ReplacementMapTroubleshooter { get; set; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + System.Collections.Generic.List ReplacementMapVideo { get; set; } + /// Group of Videos + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } + /// Solution AzureKB results + System.Collections.Generic.List ReplacementMapWebResult { get; set; } + /// List of section object. + System.Collections.Generic.List Section { get; set; } + /// Solution Id to identify single solution. + string SolutionId { get; set; } + /// The title. + string Title { get; set; } + /// Solution request trigger criteria + System.Collections.Generic.List TriggerCriterion { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.json.cs similarity index 83% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.json.cs index 2a144012ac22..75f361f22122 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceProperties.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionResourceProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionResourceProperties(json) : null; } @@ -77,14 +77,14 @@ internal SolutionResourceProperties(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp. { return; } - {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMaps.FromJson(__jsonReplacementMaps) : ReplacementMap;} - {_triggerCriterion = If( json?.PropertyT("triggerCriteria"), out var __jsonTriggerCriteria) ? If( __jsonTriggerCriteria as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TriggerCriterion.FromJson(__u) )) ))() : null : TriggerCriterion;} - {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParameters.FromJson(__jsonParameters) : Parameter;} - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)Content;} - {_section = If( json?.PropertyT("sections"), out var __jsonSections) ? If( __jsonSections as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Section.FromJson(__p) )) ))() : null : Section;} + {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMaps.FromJson(__jsonReplacementMaps) : _replacementMap;} + {_triggerCriterion = If( json?.PropertyT("triggerCriteria"), out var __jsonTriggerCriteria) ? If( __jsonTriggerCriteria as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TriggerCriterion.FromJson(__u) )) ))() : null : _triggerCriterion;} + {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParameters.FromJson(__jsonParameters) : _parameter;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)_provisioningState;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)_content;} + {_section = If( json?.PropertyT("sections"), out var __jsonSections) ? If( __jsonSections as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Section.FromJson(__p) )) ))() : null : _section;} AfterFromJson(json); } @@ -107,7 +107,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != this._replacementMap ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._replacementMap.ToJson(null,serializationMode) : null, "replacementMaps" ,container.Add ); } @@ -121,23 +121,23 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( container.Add("triggerCriteria",__w); } AddIf( null != this._parameter ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._parameter.ToJson(null,serializationMode) : null, "parameters" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._solutionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._solutionId.ToString()) : null, "solutionId" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._title)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._title.ToString()) : null, "title" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._content)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._content.ToString()) : null, "content" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._section) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.PowerShell.cs index 0d2214be0dd0..bd0aec703caf 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionResourcePropertiesParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionResourcePropertiesParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionResourcePropertiesParameters(content); } @@ -97,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -119,7 +117,7 @@ internal SolutionResourcePropertiesParameters(global::System.Collections.IDictio } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.TypeConverter.cs index 597707b1bc08..2cf6070a2c64 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -109,14 +109,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.cs index 27cd4c60d2a3..e50484f8c6bc 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Client input parameters to run Solution public partial class SolutionResourcePropertiesParameters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParametersInternal { /// Creates an new instance. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.dictionary.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.dictionary.cs index 95101a730a01..40f41ffa94e7 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourcePropertiesParameters source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourcePropertiesParameters source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.json.cs index c97f7d028eb7..1eeaeee13592 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourcePropertiesParameters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourcePropertiesParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionResourcePropertiesParameters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionResourcePropertiesParameters(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.PowerShell.cs new file mode 100644 index 000000000000..20888cf8d3d4 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.PowerShell.cs @@ -0,0 +1,308 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Self Help Solution response. + [System.ComponentModel.TypeConverter(typeof(SolutionResourceSelfHelpTypeConverter))] + public partial class SolutionResourceSelfHelp + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SolutionResourceSelfHelp(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SolutionResourceSelfHelp(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SolutionResourceSelfHelp(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelpTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelpTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SolutionResourceSelfHelp(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelpTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("ReplacementMap")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); + } + if (content.Contains("SolutionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Content")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Content, global::System.Convert.ToString); + } + if (content.Contains("Section")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelpTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapWebResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); + } + if (content.Contains("ReplacementMapVideoGroup")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Self Help Solution response. + [System.ComponentModel.TypeConverter(typeof(SolutionResourceSelfHelpTypeConverter))] + public partial interface ISolutionResourceSelfHelp + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.TypeConverter.cs index b0d13bf8407e..20cb28aa5804 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.cs new file mode 100644 index 000000000000..eac3ce626a58 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.cs @@ -0,0 +1,301 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Self Help Solution response. + public partial class SolutionResourceSelfHelp : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); + + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Content; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// Internal Acessors for Content + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.Content { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Content; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Content = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelp()); set { {_property = value;} } } + + /// Internal Acessors for ReplacementMap + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.ReplacementMap { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMap; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMap = value ?? null /* model class */; } + + /// Internal Acessors for ReplacementMapVideo + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideo = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideoGroup + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideoGroup = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapWebResult + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapWebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapWebResult = value ?? null /* arrayOf */; } + + /// Internal Acessors for Section + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Section; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Section = value ?? null /* arrayOf */; } + + /// Internal Acessors for SolutionId + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).SolutionId = value ?? null; } + + /// Internal Acessors for Title + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelpInternal.Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Title = value ?? null; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp _property; + + /// Solution result + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelp()); set => this._property = value; } + + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideo; } + + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapVideoGroup; } + + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).ReplacementMapWebResult; } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Section { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Section; } + + /// + /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).SolutionId; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } + + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)Property).Title; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } + + /// Creates an new instance. + public SolutionResourceSelfHelp() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); + } + } + /// Self Help Solution response. + public partial interface ISolutionResourceSelfHelp : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource + { + /// The HTML content that needs to be rendered and shown to customer. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The HTML content that needs to be rendered and shown to customer.", + SerializedName = @"content", + PossibleTypes = new [] { typeof(string) })] + string Content { get; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", + SerializedName = @"videos", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; } + /// Group of Videos + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Group of Videos", + SerializedName = @"videoGroups", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; } + /// Solution AzureKB results + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Solution AzureKB results", + SerializedName = @"webResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; } + /// List of section object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"List of section object.", + SerializedName = @"sections", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp) })] + System.Collections.Generic.List Section { get; } + /// + /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + string SolutionId { get; } + /// The title. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"The title.", + SerializedName = @"title", + PossibleTypes = new [] { typeof(string) })] + string Title { get; } + + } + /// Self Help Solution response. + internal partial interface ISolutionResourceSelfHelpInternal : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal + { + /// The HTML content that needs to be rendered and shown to customer. + string Content { get; set; } + /// Solution result + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp Property { get; set; } + /// Solution replacement maps. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp ReplacementMap { get; set; } + /// + /// Video solutions, which have the power to engage the customer by stimulating their senses + /// + System.Collections.Generic.List ReplacementMapVideo { get; set; } + /// Group of Videos + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } + /// Solution AzureKB results + System.Collections.Generic.List ReplacementMapWebResult { get; set; } + /// List of section object. + System.Collections.Generic.List Section { get; set; } + /// + /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + /// + string SolutionId { get; set; } + /// The title. + string Title { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.json.cs index 332ec8295fdb..6c9958d30d21 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionResourceSelfHelp.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionResourceSelfHelp.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionResourceSelfHelp partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionResourceSelfHelp(json) : null; } @@ -77,8 +77,8 @@ internal SolutionResourceSelfHelp(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Ru { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionsResourcePropertiesSelfHelp.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionsResourcePropertiesSelfHelp.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.PowerShell.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.PowerShell.cs index 6b49367ead43..ce60dd8dbd18 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionWarmUpRequestBody partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionWarmUpRequestBody(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionWarmUpRequestBody(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,13 +111,13 @@ internal SolutionWarmUpRequestBody(global::System.Collections.IDictionary conten // actually deserialize if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParametersTypeConverter.ConvertFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -134,7 +132,7 @@ internal SolutionWarmUpRequestBody(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParametersTypeConverter.ConvertFrom); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.TypeConverter.cs index aed92ea4b41c..13bd0b7d0a73 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.cs similarity index 63% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.cs index 37be4040e752..b3b7d110c205 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solution WarmUpRequest body public partial class SolutionWarmUpRequestBody : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters _parameter; /// Dictionary of [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParameters()); set => this._parameter = value; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParameters()); set => this._parameter = value; } /// Creates an new instance. public SolutionWarmUpRequestBody() @@ -34,10 +34,13 @@ public partial interface ISolutionWarmUpRequestBody : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Dictionary of ", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters Parameter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters Parameter { get; set; } } /// Solution WarmUpRequest body @@ -45,7 +48,7 @@ internal partial interface ISolutionWarmUpRequestBodyInternal { /// Dictionary of - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters Parameter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters Parameter { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.json.cs index a1a377d2712c..7867b23186da 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBody.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBody.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionWarmUpRequestBody partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionWarmUpRequestBody(json) : null; } @@ -77,7 +77,7 @@ internal SolutionWarmUpRequestBody(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.R { return; } - {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParameters.FromJson(__jsonParameters) : Parameter;} + {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParameters.FromJson(__jsonParameters) : _parameter;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.PowerShell.cs index 88bd295a2359..d5b0cef437ff 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionWarmUpRequestBodyParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionWarmUpRequestBodyParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionWarmUpRequestBodyParameters(content); } @@ -97,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -119,7 +117,7 @@ internal SolutionWarmUpRequestBodyParameters(global::System.Collections.IDiction } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.TypeConverter.cs index b8db0576f90c..f41d6ac1f233 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -108,14 +108,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.cs similarity index 77% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.cs index 14e8fb322725..6a4c50096f70 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Dictionary of public partial class SolutionWarmUpRequestBodyParameters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParametersInternal { /// Creates an new instance. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.dictionary.cs similarity index 95% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.dictionary.cs index 0377f32151f3..81e926304349 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBodyParameters source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBodyParameters source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.json.cs index dfbbbd6df7fe..61caa585edfd 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionWarmUpRequestBodyParameters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionWarmUpRequestBodyParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionWarmUpRequestBodyParameters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionWarmUpRequestBodyParameters(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.PowerShell.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.PowerShell.cs index 7549df62c097..b963a27f633b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Solutions partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Solutions(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Solutions(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,13 +111,13 @@ internal Solutions(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Solution")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -132,7 +132,7 @@ internal Solutions(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Solution")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal)this).Solution = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal)this).Solution = (System.Collections.Generic.List) content.GetValueForProperty("Solution",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal)this).Solution, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataPropertiesTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.TypeConverter.cs index be1b7b9cdb7c..5e201d0d7750 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.cs similarity index 60% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.cs index d2d76c20cb76..d164190374e1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// List of solutions public partial class Solutions : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] _solution; + private System.Collections.Generic.List _solution; /// List of metadata. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get => this._solution; set => this._solution = value; } + public System.Collections.Generic.List Solution { get => this._solution; set => this._solution = value; } /// Creates an new instance. public Solutions() @@ -34,10 +34,13 @@ public partial interface ISolutions : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"List of metadata.", SerializedName = @"solutions", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties) })] + System.Collections.Generic.List Solution { get; set; } } /// List of solutions @@ -45,7 +48,7 @@ internal partial interface ISolutionsInternal { /// List of metadata. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[] Solution { get; set; } + System.Collections.Generic.List Solution { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.json.cs index 67bc0cd219e3..eed91edfc463 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Solutions.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Solutions.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class Solutions partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutions FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutions FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Solutions(json) : null; } @@ -77,7 +75,7 @@ internal Solutions(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Json { return; } - {_solution = If( json?.PropertyT("solutions"), out var __jsonSolutions) ? If( __jsonSolutions as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionMetadataProperties.FromJson(__u) )) ))() : null : Solution;} + {_solution = If( json?.PropertyT("solutions"), out var __jsonSolutions) ? If( __jsonSolutions as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionMetadataProperties.FromJson(__u) )) ))() : null : _solution;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.PowerShell.cs similarity index 62% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.PowerShell.cs index 15c90408bc7e..b57f679c0a2d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionsDiagnostic partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionsDiagnostic(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionsDiagnostic(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,37 +111,37 @@ internal SolutionsDiagnostic(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("StatusDetail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).StatusDetail = (string) content.GetValueForProperty("StatusDetail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).StatusDetail, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).StatusDetail = (string) content.GetValueForProperty("StatusDetail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).StatusDetail, global::System.Convert.ToString); } if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("EstimatedCompletionTime")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime = (string) content.GetValueForProperty("EstimatedCompletionTime",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime = (string) content.GetValueForProperty("EstimatedCompletionTime",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime, global::System.Convert.ToString); } if (content.Contains("RequiredParameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).RequiredParameter = (string[]) content.GetValueForProperty("RequiredParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).RequiredParameter, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).RequiredParameter = (System.Collections.Generic.List) content.GetValueForProperty("RequiredParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).RequiredParameter, __y => TypeConverterExtensions.SelectToList(__y, global::System.Convert.ToString)); } if (content.Contains("Insight")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.InsightTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.InsightTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -158,31 +156,31 @@ internal SolutionsDiagnostic(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("StatusDetail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).StatusDetail = (string) content.GetValueForProperty("StatusDetail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).StatusDetail, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).StatusDetail = (string) content.GetValueForProperty("StatusDetail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).StatusDetail, global::System.Convert.ToString); } if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("EstimatedCompletionTime")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime = (string) content.GetValueForProperty("EstimatedCompletionTime",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime = (string) content.GetValueForProperty("EstimatedCompletionTime",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).EstimatedCompletionTime, global::System.Convert.ToString); } if (content.Contains("RequiredParameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).RequiredParameter = (string[]) content.GetValueForProperty("RequiredParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).RequiredParameter, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).RequiredParameter = (System.Collections.Generic.List) content.GetValueForProperty("RequiredParameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).RequiredParameter, __y => TypeConverterExtensions.SelectToList(__y, global::System.Convert.ToString)); } if (content.Contains("Insight")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Insight = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.InsightTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.InsightTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.TypeConverter.cs index f0a9a56d349b..24d832cf3327 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.cs similarity index 75% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.cs index ed1a727505ba..29fa919ea931 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solutions Diagnostic public partial class SolutionsDiagnostic : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnosticInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnosticInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class SolutionsDiagnostic : public string EstimatedCompletionTime { get => this._estimatedCompletionTime; set => this._estimatedCompletionTime = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] _insight; + private System.Collections.Generic.List _insight; /// Diagnostic insights [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get => this._insight; set => this._insight = value; } + public System.Collections.Generic.List Insight { get => this._insight; set => this._insight = value; } /// Backing field for property. private string _replacementKey; @@ -35,11 +35,11 @@ public partial class SolutionsDiagnostic : public string ReplacementKey { get => this._replacementKey; set => this._replacementKey = value; } /// Backing field for property. - private string[] _requiredParameter; + private System.Collections.Generic.List _requiredParameter; /// Required parameters of this item [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public string[] RequiredParameter { get => this._requiredParameter; set => this._requiredParameter = value; } + public System.Collections.Generic.List RequiredParameter { get => this._requiredParameter; set => this._requiredParameter = value; } /// Backing field for property. private string _solutionId; @@ -49,11 +49,11 @@ public partial class SolutionsDiagnostic : public string SolutionId { get => this._solutionId; set => this._solutionId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? _status; + private string _status; /// Denotes the status of the diagnostic resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? Status { get => this._status; set => this._status = value; } + public string Status { get => this._status; set => this._status = value; } /// Backing field for property. private string _statusDetail; @@ -76,6 +76,9 @@ public partial interface ISolutionsDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Diagnostics estimated completion time in minutes", SerializedName = @"estimatedCompletionTime", PossibleTypes = new [] { typeof(string) })] @@ -84,14 +87,20 @@ public partial interface ISolutionsDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Diagnostic insights", SerializedName = @"insights", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight) })] + System.Collections.Generic.List Insight { get; set; } /// Place holder used in HTML Content replace control with the content [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Place holder used in HTML Content replace control with the content", SerializedName = @"replacementKey", PossibleTypes = new [] { typeof(string) })] @@ -100,14 +109,20 @@ public partial interface ISolutionsDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Required parameters of this item", SerializedName = @"requiredParameters", PossibleTypes = new [] { typeof(string) })] - string[] RequiredParameter { get; set; } + System.Collections.Generic.List RequiredParameter { get; set; } /// Solution Id to identify single Solutions Diagnostic [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id to identify single Solutions Diagnostic", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -116,14 +131,21 @@ public partial interface ISolutionsDiagnostic : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Denotes the status of the diagnostic resource.", SerializedName = @"status", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? Status { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Failed", "MissingInputs", "Running", "Succeeded", "Timeout")] + string Status { get; set; } /// Details of the status [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Details of the status", SerializedName = @"statusDetails", PossibleTypes = new [] { typeof(string) })] @@ -137,15 +159,16 @@ internal partial interface ISolutionsDiagnosticInternal /// Diagnostics estimated completion time in minutes string EstimatedCompletionTime { get; set; } /// Diagnostic insights - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get; set; } + System.Collections.Generic.List Insight { get; set; } /// Place holder used in HTML Content replace control with the content string ReplacementKey { get; set; } /// Required parameters of this item - string[] RequiredParameter { get; set; } + System.Collections.Generic.List RequiredParameter { get; set; } /// Solution Id to identify single Solutions Diagnostic string SolutionId { get; set; } /// Denotes the status of the diagnostic resource. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status? Status { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Failed", "MissingInputs", "Running", "Succeeded", "Timeout")] + string Status { get; set; } /// Details of the status string StatusDetail { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.json.cs index a454d260643e..a38ae1baa14c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsDiagnostic.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsDiagnostic.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionsDiagnostic partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionsDiagnostic(json) : null; } @@ -77,13 +77,13 @@ internal SolutionsDiagnostic(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} - {_statusDetail = If( json?.PropertyT("statusDetails"), out var __jsonStatusDetails) ? (string)__jsonStatusDetails : (string)StatusDetail;} - {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)ReplacementKey;} - {_estimatedCompletionTime = If( json?.PropertyT("estimatedCompletionTime"), out var __jsonEstimatedCompletionTime) ? (string)__jsonEstimatedCompletionTime : (string)EstimatedCompletionTime;} - {_requiredParameter = If( json?.PropertyT("requiredParameters"), out var __jsonRequiredParameters) ? If( __jsonRequiredParameters as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : RequiredParameter;} - {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Insight.FromJson(__p) )) ))() : null : Insight;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)_status;} + {_statusDetail = If( json?.PropertyT("statusDetails"), out var __jsonStatusDetails) ? (string)__jsonStatusDetails : (string)_statusDetail;} + {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)_replacementKey;} + {_estimatedCompletionTime = If( json?.PropertyT("estimatedCompletionTime"), out var __jsonEstimatedCompletionTime) ? (string)__jsonEstimatedCompletionTime : (string)_estimatedCompletionTime;} + {_requiredParameter = If( json?.PropertyT("requiredParameters"), out var __jsonRequiredParameters) ? If( __jsonRequiredParameters as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : _requiredParameter;} + {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Insight.FromJson(__p) )) ))() : null : _insight;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.PowerShell.cs similarity index 53% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.PowerShell.cs index 52964365a84a..583bc7b9eeb2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionsResourcePropertiesSelfHelp partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionsResourcePropertiesSelfHelp(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionsResourcePropertiesSelfHelp(content); } @@ -97,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -115,41 +113,41 @@ internal SolutionsResourcePropertiesSelfHelp(global::System.Collections.IDiction // actually deserialize if (content.Contains("ReplacementMap")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); } if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("Section")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelpTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelpTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapWebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -164,35 +162,35 @@ internal SolutionsResourcePropertiesSelfHelp(global::System.Management.Automatio // actually deserialize if (content.Contains("ReplacementMap")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp) content.GetValueForProperty("ReplacementMap",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMap, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelpTypeConverter.ConvertFrom); } if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Content")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Content, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Content = (string) content.GetValueForProperty("Content",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Content, global::System.Convert.ToString); } if (content.Contains("Section")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Section = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelpTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Section = (System.Collections.Generic.List) content.GetValueForProperty("Section",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).Section, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelpTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapWebResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.WebResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapWebResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapWebResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.WebResultTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementMapVideoGroup")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup = (System.Collections.Generic.List) content.GetValueForProperty("ReplacementMapVideoGroup",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal)this).ReplacementMapVideoGroup, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs index ca458120b834..8daded0fb9cb 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -108,14 +108,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.cs similarity index 56% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.cs index 6f60ef5bc503..aa68cc335593 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Solution result public partial class SolutionsResourcePropertiesSelfHelp : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal { /// Backing field for property. @@ -21,47 +21,56 @@ public partial class SolutionsResourcePropertiesSelfHelp : public string Content { get => this._content; } /// Internal Acessors for Content - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal.Content { get => this._content; set { {_content = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.Content { get => this._content; set { {_content = value;} } } /// Internal Acessors for ReplacementMap - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelp()); set { {_replacementMap = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelp()); set { {_replacementMap = value;} } } + + /// Internal Acessors for ReplacementMapVideo + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapVideoGroup + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } + + /// Internal Acessors for ReplacementMapWebResult + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } /// Internal Acessors for Section - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal.Section { get => this._section; set { {_section = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.Section { get => this._section; set { {_section = value;} } } /// Internal Acessors for SolutionId - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal.SolutionId { get => this._solutionId; set { {_solutionId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.SolutionId { get => this._solutionId; set { {_solutionId = value;} } } /// Internal Acessors for Title - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelpInternal.Title { get => this._title; set { {_title = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelpInternal.Title { get => this._title; set { {_title = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp _replacementMap; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp _replacementMap; /// Solution replacement maps. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelp()); } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp ReplacementMap { get => (this._replacementMap = this._replacementMap ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelp()); } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).Video; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).Video = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapVideo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).Video; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapVideoGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).VideoGroup; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult = value ?? null /* arrayOf */; } + public System.Collections.Generic.List ReplacementMapWebResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelpInternal)ReplacementMap).WebResult; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] _section; + private System.Collections.Generic.List _section; /// List of section object. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Section { get => this._section; } + public System.Collections.Generic.List Section { get => this._section; } /// Backing field for property. private string _solutionId; @@ -93,6 +102,9 @@ public partial interface ISolutionsResourcePropertiesSelfHelp : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The HTML content that needs to be rendered and shown to customer.", SerializedName = @"content", PossibleTypes = new [] { typeof(string) })] @@ -102,41 +114,56 @@ public partial interface ISolutionsResourcePropertiesSelfHelp : /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Video solutions, which have the power to engage the customer by stimulating their senses", SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo) })] + System.Collections.Generic.List ReplacementMapVideo { get; } /// Group of Videos [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Group of Videos", SerializedName = @"videoGroups", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup) })] + System.Collections.Generic.List ReplacementMapVideoGroup { get; } /// Solution AzureKB results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, - ReadOnly = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Solution AzureKB results", SerializedName = @"webResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult) })] + System.Collections.Generic.List ReplacementMapWebResult { get; } /// List of section object. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"List of section object.", SerializedName = @"sections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Section { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp) })] + System.Collections.Generic.List Section { get; } /// /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -145,6 +172,9 @@ public partial interface ISolutionsResourcePropertiesSelfHelp : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -158,17 +188,17 @@ internal partial interface ISolutionsResourcePropertiesSelfHelpInternal /// The HTML content that needs to be rendered and shown to customer. string Content { get; set; } /// Solution replacement maps. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IReplacementMapsSelfHelp ReplacementMap { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IReplacementMapsSelfHelp ReplacementMap { get; set; } /// /// Video solutions, which have the power to engage the customer by stimulating their senses /// - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[] ReplacementMapVideo { get; set; } + System.Collections.Generic.List ReplacementMapVideo { get; set; } /// Group of Videos - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[] ReplacementMapVideoGroup { get; set; } + System.Collections.Generic.List ReplacementMapVideoGroup { get; set; } /// Solution AzureKB results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[] ReplacementMapWebResult { get; set; } + System.Collections.Generic.List ReplacementMapWebResult { get; set; } /// List of section object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[] Section { get; set; } + System.Collections.Generic.List Section { get; set; } /// /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.json.cs similarity index 86% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.json.cs index 93943af192fb..2eef36643aba 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsResourcePropertiesSelfHelp.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsResourcePropertiesSelfHelp.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionsResourcePropertiesSelfHelp partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsResourcePropertiesSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsResourcePropertiesSelfHelp FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionsResourcePropertiesSelfHelp(json) : null; } @@ -77,11 +77,11 @@ internal SolutionsResourcePropertiesSelfHelp(Microsoft.Azure.PowerShell.Cmdlets. { return; } - {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ReplacementMapsSelfHelp.FromJson(__jsonReplacementMaps) : ReplacementMap;} - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)Content;} - {_section = If( json?.PropertyT("sections"), out var __jsonSections) ? If( __jsonSections as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SectionSelfHelp.FromJson(__u) )) ))() : null : Section;} + {_replacementMap = If( json?.PropertyT("replacementMaps"), out var __jsonReplacementMaps) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ReplacementMapsSelfHelp.FromJson(__jsonReplacementMaps) : _replacementMap;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_content = If( json?.PropertyT("content"), out var __jsonContent) ? (string)__jsonContent : (string)_content;} + {_section = If( json?.PropertyT("sections"), out var __jsonSections) ? If( __jsonSections as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SectionSelfHelp.FromJson(__u) )) ))() : null : _section;} AfterFromJson(json); } @@ -105,23 +105,23 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != this._replacementMap ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._replacementMap.ToJson(null,serializationMode) : null, "replacementMaps" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._solutionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._solutionId.ToString()) : null, "solutionId" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._title)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._title.ToString()) : null, "title" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._content)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._content.ToString()) : null, "content" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._section) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.PowerShell.cs similarity index 75% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.PowerShell.cs index 4e2d6065a7bf..8346cb450929 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class SolutionsTroubleshooters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SolutionsTroubleshooters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SolutionsTroubleshooters(content); } @@ -95,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +111,21 @@ internal SolutionsTroubleshooters(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Summary")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Summary = (string) content.GetValueForProperty("Summary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Summary, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Summary = (string) content.GetValueForProperty("Summary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Summary, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +140,15 @@ internal SolutionsTroubleshooters(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Title, global::System.Convert.ToString); } if (content.Contains("Summary")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Summary = (string) content.GetValueForProperty("Summary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal)this).Summary, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Summary = (string) content.GetValueForProperty("Summary",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal)this).Summary, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.TypeConverter.cs index ce17344424ca..30a2c5781369 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.cs index c3240f1685b4..6e6eb6822f82 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Troubleshooters in Solutions public partial class SolutionsTroubleshooters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshootersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshootersInternal { /// Backing field for property. @@ -48,6 +48,9 @@ public partial interface ISolutionsTroubleshooters : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id to identify single Solutions Troubleshooter", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -56,6 +59,9 @@ public partial interface ISolutionsTroubleshooters : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Troubleshooter summary", SerializedName = @"summary", PossibleTypes = new [] { typeof(string) })] @@ -64,6 +70,9 @@ public partial interface ISolutionsTroubleshooters : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Troubleshooter title", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.json.cs index 04ec1e196cdb..00e1a32f340a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/SolutionsTroubleshooters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SolutionsTroubleshooters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SolutionsTroubleshooters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SolutionsTroubleshooters(json) : null; } @@ -77,9 +77,9 @@ internal SolutionsTroubleshooters(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Ru { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_summary = If( json?.PropertyT("summary"), out var __jsonSummary) ? (string)__jsonSummary : (string)Summary;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_summary = If( json?.PropertyT("summary"), out var __jsonSummary) ? (string)__jsonSummary : (string)_summary;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.PowerShell.cs new file mode 100644 index 000000000000..c590fbe47130 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.PowerShell.cs @@ -0,0 +1,324 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + + /// Troubleshooter step + [System.ComponentModel.TypeConverter(typeof(StepTypeConverter))] + public partial class Step + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Step(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Step(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Step(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("AutomatedCheckResults")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResults = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult) content.GetValueForProperty("AutomatedCheckResults",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResults, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResultTypeConverter.ConvertFrom); + } + if (content.Contains("Error")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Description")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Description, global::System.Convert.ToString); + } + if (content.Contains("Guidance")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Guidance = (string) content.GetValueForProperty("Guidance",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Guidance, global::System.Convert.ToString); + } + if (content.Contains("ExecutionStatus")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatus = (string) content.GetValueForProperty("ExecutionStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatus, global::System.Convert.ToString); + } + if (content.Contains("ExecutionStatusDescription")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatusDescription = (string) content.GetValueForProperty("ExecutionStatusDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatusDescription, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("IsLastStep")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).IsLastStep = (bool?) content.GetValueForProperty("IsLastStep",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).IsLastStep, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("Input")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Input = (System.Collections.Generic.List) content.GetValueForProperty("Input",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Input, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepInputTypeConverter.ConvertFrom)); + } + if (content.Contains("Insight")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.InsightTypeConverter.ConvertFrom)); + } + if (content.Contains("AutomatedCheckResultVersion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultVersion = (string) content.GetValueForProperty("AutomatedCheckResultVersion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultVersion, global::System.Convert.ToString); + } + if (content.Contains("AutomatedCheckResultStatus")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultStatus = (string) content.GetValueForProperty("AutomatedCheckResultStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultStatus, global::System.Convert.ToString); + } + if (content.Contains("AutomatedCheckResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResult = (string) content.GetValueForProperty("AutomatedCheckResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResult, global::System.Convert.ToString); + } + if (content.Contains("AutomatedCheckResultType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultType = (string) content.GetValueForProperty("AutomatedCheckResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultType, global::System.Convert.ToString); + } + if (content.Contains("Code")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Code, global::System.Convert.ToString); + } + if (content.Contains("Message")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Message, global::System.Convert.ToString); + } + if (content.Contains("Target")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Target, global::System.Convert.ToString); + } + if (content.Contains("Detail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom)); + } + if (content.Contains("AdditionalInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AdditionalInfo = (System.Collections.Generic.List) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Step(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("AutomatedCheckResults")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResults = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult) content.GetValueForProperty("AutomatedCheckResults",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResults, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResultTypeConverter.ConvertFrom); + } + if (content.Contains("Error")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Title")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Title, global::System.Convert.ToString); + } + if (content.Contains("Description")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Description, global::System.Convert.ToString); + } + if (content.Contains("Guidance")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Guidance = (string) content.GetValueForProperty("Guidance",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Guidance, global::System.Convert.ToString); + } + if (content.Contains("ExecutionStatus")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatus = (string) content.GetValueForProperty("ExecutionStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatus, global::System.Convert.ToString); + } + if (content.Contains("ExecutionStatusDescription")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatusDescription = (string) content.GetValueForProperty("ExecutionStatusDescription",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).ExecutionStatusDescription, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("IsLastStep")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).IsLastStep = (bool?) content.GetValueForProperty("IsLastStep",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).IsLastStep, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("Input")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Input = (System.Collections.Generic.List) content.GetValueForProperty("Input",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Input, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepInputTypeConverter.ConvertFrom)); + } + if (content.Contains("Insight")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Insight = (System.Collections.Generic.List) content.GetValueForProperty("Insight",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Insight, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.InsightTypeConverter.ConvertFrom)); + } + if (content.Contains("AutomatedCheckResultVersion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultVersion = (string) content.GetValueForProperty("AutomatedCheckResultVersion",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultVersion, global::System.Convert.ToString); + } + if (content.Contains("AutomatedCheckResultStatus")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultStatus = (string) content.GetValueForProperty("AutomatedCheckResultStatus",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultStatus, global::System.Convert.ToString); + } + if (content.Contains("AutomatedCheckResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResult = (string) content.GetValueForProperty("AutomatedCheckResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResult, global::System.Convert.ToString); + } + if (content.Contains("AutomatedCheckResultType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultType = (string) content.GetValueForProperty("AutomatedCheckResultType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AutomatedCheckResultType, global::System.Convert.ToString); + } + if (content.Contains("Code")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Code, global::System.Convert.ToString); + } + if (content.Contains("Message")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Message, global::System.Convert.ToString); + } + if (content.Contains("Target")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Target, global::System.Convert.ToString); + } + if (content.Contains("Detail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Detail = (System.Collections.Generic.List) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).Detail, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetailTypeConverter.ConvertFrom)); + } + if (content.Contains("AdditionalInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AdditionalInfo = (System.Collections.Generic.List) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Troubleshooter step + [System.ComponentModel.TypeConverter(typeof(StepTypeConverter))] + public partial interface IStep + + { + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.TypeConverter.cs index 54dc00238c91..693e3538020c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.cs similarity index 62% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.cs index 91a7eeb21b57..f4085837aa45 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.cs @@ -3,46 +3,46 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Troubleshooter step public partial class Step : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal { /// The error additional info. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).AdditionalInfo; } + public System.Collections.Generic.List AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).AdditionalInfo; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult _automatedCheckResult; - - /// Only for AutomatedStep type - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult AutomatedCheckResult { get => (this._automatedCheckResult = this._automatedCheckResult ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResult()); set => this._automatedCheckResult = value; } + /// Insight Article Content + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string AutomatedCheckResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Result; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Result = value ?? null; } /// Status for automated check result [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string AutomatedCheckResultStatus { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Status = value ?? null; } + public string AutomatedCheckResultStatus { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Status = value ?? null; } /// Type of Result. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? AutomatedCheckResultType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType)""); } + public string AutomatedCheckResultType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Type = value ?? null; } /// Version for automated check result [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string AutomatedCheckResultVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Version; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Version = value ?? null; } + public string AutomatedCheckResultVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Version; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResultInternal)AutomatedCheckResults).Version = value ?? null; } - /// Insight Article Content - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string AutomatedCheckResultsResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Result; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResultInternal)AutomatedCheckResult).Result = value ?? null; } + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult _automatedCheckResults; + + /// Only for AutomatedStep type + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult AutomatedCheckResults { get => (this._automatedCheckResults = this._automatedCheckResults ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResult()); set => this._automatedCheckResults = value; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Code; } + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Code; } /// Backing field for property. private string _description; @@ -53,21 +53,21 @@ public partial class Step : /// The error details. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Detail; } + public System.Collections.Generic.List Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Detail; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail _error; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail _error; /// The error detail. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail()); set => this._error = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail()); set => this._error = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus? _executionStatus; + private string _executionStatus; /// Status of Troubleshooter Step execution. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus? ExecutionStatus { get => this._executionStatus; set => this._executionStatus = value; } + public string ExecutionStatus { get => this._executionStatus; set => this._executionStatus = value; } /// Backing field for property. private string _executionStatusDescription; @@ -91,16 +91,16 @@ public partial class Step : public string Id { get => this._id; set => this._id = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[] _input; + private System.Collections.Generic.List _input; [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[] Input { get => this._input; set => this._input = value; } + public System.Collections.Generic.List Input { get => this._input; set => this._input = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] _insight; + private System.Collections.Generic.List _insight; [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get => this._insight; set => this._insight = value; } + public System.Collections.Generic.List Insight { get => this._insight; set => this._insight = value; } /// Backing field for property. private bool? _isLastStep; @@ -111,32 +111,32 @@ public partial class Step : /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Message; } + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Message; } /// Internal Acessors for AdditionalInfo - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).AdditionalInfo = value; } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).AdditionalInfo = value ?? null /* arrayOf */; } - /// Internal Acessors for AutomatedCheckResult - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.AutomatedCheckResult { get => (this._automatedCheckResult = this._automatedCheckResult ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResult()); set { {_automatedCheckResult = value;} } } + /// Internal Acessors for AutomatedCheckResults + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.AutomatedCheckResults { get => (this._automatedCheckResults = this._automatedCheckResults ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResult()); set { {_automatedCheckResults = value;} } } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Code = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Code = value ?? null; } /// Internal Acessors for Detail - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Detail = value; } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Detail = value ?? null /* arrayOf */; } /// Internal Acessors for Error - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail()); set { {_error = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail()); set { {_error = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Message = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Message = value ?? null; } /// Internal Acessors for Target - string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Target = value; } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Target = value ?? null; } /// The error target. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetailInternal)Error).Target; } + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetailInternal)Error).Target; } /// Backing field for property. private string _title; @@ -146,11 +146,11 @@ public partial class Step : public string Title { get => this._title; set => this._title = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type? _type; + private string _type; /// Type of Troubleshooting step. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type? Type { get => this._type; set => this._type = value; } + public string Type { get => this._type; set => this._type = value; } /// Creates an new instance. public Step() @@ -166,14 +166,31 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error additional info.", SerializedName = @"additionalInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo) })] + System.Collections.Generic.List AdditionalInfo { get; } + /// Insight Article Content + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Insight Article Content", + SerializedName = @"result", + PossibleTypes = new [] { typeof(string) })] + string AutomatedCheckResult { get; set; } /// Status for automated check result [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Status for automated check result", SerializedName = @"status", PossibleTypes = new [] { typeof(string) })] @@ -182,30 +199,32 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Type of Result.", SerializedName = @"type", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? AutomatedCheckResultType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Success", "Warning", "Error", "Information")] + string AutomatedCheckResultType { get; set; } /// Version for automated check result [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Version for automated check result", SerializedName = @"version", PossibleTypes = new [] { typeof(string) })] string AutomatedCheckResultVersion { get; set; } - /// Insight Article Content - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Insight Article Content", - SerializedName = @"result", - PossibleTypes = new [] { typeof(string) })] - string AutomatedCheckResultsResult { get; set; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error code.", SerializedName = @"code", PossibleTypes = new [] { typeof(string) })] @@ -214,6 +233,9 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Step description.", SerializedName = @"description", PossibleTypes = new [] { typeof(string) })] @@ -222,22 +244,32 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error details.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail) })] + System.Collections.Generic.List Detail { get; } /// Status of Troubleshooter Step execution. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Status of Troubleshooter Step execution.", SerializedName = @"executionStatus", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus? ExecutionStatus { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Success", "Running", "Failed", "Warning")] + string ExecutionStatus { get; set; } /// This field has more detailed status description of the execution status. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"This field has more detailed status description of the execution status.", SerializedName = @"executionStatusDescription", PossibleTypes = new [] { typeof(string) })] @@ -246,6 +278,9 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Get or sets the Step guidance.", SerializedName = @"guidance", PossibleTypes = new [] { typeof(string) })] @@ -254,6 +289,9 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Unique step id.", SerializedName = @"id", PossibleTypes = new [] { typeof(string) })] @@ -262,22 +300,31 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"inputs", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[] Input { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput) })] + System.Collections.Generic.List Input { get; set; } [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"insights", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight) })] + System.Collections.Generic.List Insight { get; set; } /// is this last step of the workflow. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"is this last step of the workflow.", SerializedName = @"isLastStep", PossibleTypes = new [] { typeof(bool) })] @@ -286,6 +333,9 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error message.", SerializedName = @"message", PossibleTypes = new [] { typeof(string) })] @@ -294,6 +344,9 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"The error target.", SerializedName = @"target", PossibleTypes = new [] { typeof(string) })] @@ -302,6 +355,9 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Step title.", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] @@ -310,10 +366,14 @@ public partial interface IStep : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Type of Troubleshooting step.", SerializedName = @"type", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type? Type { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Decision", "Solution", "Insight", "AutomatedCheck", "Input")] + string Type { get; set; } } /// Troubleshooter step @@ -321,27 +381,29 @@ internal partial interface IStepInternal { /// The error additional info. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[] AdditionalInfo { get; set; } - /// Only for AutomatedStep type - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IAutomatedCheckResult AutomatedCheckResult { get; set; } + System.Collections.Generic.List AdditionalInfo { get; set; } + /// Insight Article Content + string AutomatedCheckResult { get; set; } /// Status for automated check result string AutomatedCheckResultStatus { get; set; } /// Type of Result. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType? AutomatedCheckResultType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Success", "Warning", "Error", "Information")] + string AutomatedCheckResultType { get; set; } /// Version for automated check result string AutomatedCheckResultVersion { get; set; } - /// Insight Article Content - string AutomatedCheckResultsResult { get; set; } + /// Only for AutomatedStep type + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAutomatedCheckResult AutomatedCheckResults { get; set; } /// The error code. string Code { get; set; } /// Step description. string Description { get; set; } /// The error details. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[] Detail { get; set; } + System.Collections.Generic.List Detail { get; set; } /// The error detail. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail Error { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail Error { get; set; } /// Status of Troubleshooter Step execution. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus? ExecutionStatus { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Success", "Running", "Failed", "Warning")] + string ExecutionStatus { get; set; } /// This field has more detailed status description of the execution status. string ExecutionStatusDescription { get; set; } /// Get or sets the Step guidance. @@ -349,9 +411,9 @@ internal partial interface IStepInternal /// Unique step id. string Id { get; set; } - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[] Input { get; set; } + System.Collections.Generic.List Input { get; set; } - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[] Insight { get; set; } + System.Collections.Generic.List Insight { get; set; } /// is this last step of the workflow. bool? IsLastStep { get; set; } /// The error message. @@ -361,7 +423,8 @@ internal partial interface IStepInternal /// Step title. string Title { get; set; } /// Type of Troubleshooting step. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type? Type { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Decision", "Solution", "Insight", "AutomatedCheck", "Input")] + string Type { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.json.cs similarity index 83% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.json.cs index 068a7df8a97c..8743be81ea65 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Step.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Step.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class Step partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Step(json) : null; } @@ -77,18 +75,18 @@ internal Step(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObjec { return; } - {_automatedCheckResult = If( json?.PropertyT("automatedCheckResults"), out var __jsonAutomatedCheckResults) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.AutomatedCheckResult.FromJson(__jsonAutomatedCheckResults) : AutomatedCheckResult;} - {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorDetail.FromJson(__jsonError) : Error;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} - {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} - {_guidance = If( json?.PropertyT("guidance"), out var __jsonGuidance) ? (string)__jsonGuidance : (string)Guidance;} - {_executionStatus = If( json?.PropertyT("executionStatus"), out var __jsonExecutionStatus) ? (string)__jsonExecutionStatus : (string)ExecutionStatus;} - {_executionStatusDescription = If( json?.PropertyT("executionStatusDescription"), out var __jsonExecutionStatusDescription) ? (string)__jsonExecutionStatusDescription : (string)ExecutionStatusDescription;} - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_isLastStep = If( json?.PropertyT("isLastStep"), out var __jsonIsLastStep) ? (bool?)__jsonIsLastStep : IsLastStep;} - {_input = If( json?.PropertyT("inputs"), out var __jsonInputs) ? If( __jsonInputs as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepInput.FromJson(__u) )) ))() : null : Input;} - {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Insight.FromJson(__p) )) ))() : null : Insight;} + {_automatedCheckResults = If( json?.PropertyT("automatedCheckResults"), out var __jsonAutomatedCheckResults) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.AutomatedCheckResult.FromJson(__jsonAutomatedCheckResults) : _automatedCheckResults;} + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorDetail.FromJson(__jsonError) : _error;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)_id;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)_description;} + {_guidance = If( json?.PropertyT("guidance"), out var __jsonGuidance) ? (string)__jsonGuidance : (string)_guidance;} + {_executionStatus = If( json?.PropertyT("executionStatus"), out var __jsonExecutionStatus) ? (string)__jsonExecutionStatus : (string)_executionStatus;} + {_executionStatusDescription = If( json?.PropertyT("executionStatusDescription"), out var __jsonExecutionStatusDescription) ? (string)__jsonExecutionStatusDescription : (string)_executionStatusDescription;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)_type;} + {_isLastStep = If( json?.PropertyT("isLastStep"), out var __jsonIsLastStep) ? (bool?)__jsonIsLastStep : _isLastStep;} + {_input = If( json?.PropertyT("inputs"), out var __jsonInputs) ? If( __jsonInputs as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepInput.FromJson(__u) )) ))() : null : _input;} + {_insight = If( json?.PropertyT("insights"), out var __jsonInsights) ? If( __jsonInsights as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __q) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Insight.FromJson(__p) )) ))() : null : _insight;} AfterFromJson(json); } @@ -111,7 +109,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - AddIf( null != this._automatedCheckResult ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._automatedCheckResult.ToJson(null,serializationMode) : null, "automatedCheckResults" ,container.Add ); + AddIf( null != this._automatedCheckResults ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._automatedCheckResults.ToJson(null,serializationMode) : null, "automatedCheckResults" ,container.Add ); AddIf( null != this._error ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._error.ToJson(null,serializationMode) : null, "error" ,container.Add ); AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); AddIf( null != (((object)this._title)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._title.ToString()) : null, "title" ,container.Add ); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.PowerShell.cs similarity index 51% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.PowerShell.cs index b5d3566e8dc3..0d26a256486d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class StepInput partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new StepInput(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new StepInput(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,69 +111,69 @@ internal StepInput(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ResponseValidationProperty")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationProperty = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties) content.GetValueForProperty("ResponseValidationProperty",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationProperty, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationProperty = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties) content.GetValueForProperty("ResponseValidationProperty",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationProperty, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationPropertiesTypeConverter.ConvertFrom); } if (content.Contains("QuestionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionId, global::System.Convert.ToString); } if (content.Contains("QuestionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType?) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionType = (string) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionType, global::System.Convert.ToString); } if (content.Contains("QuestionTitle")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionTitle = (string) content.GetValueForProperty("QuestionTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionTitle, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionTitle = (string) content.GetValueForProperty("QuestionTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionTitle, global::System.Convert.ToString); } if (content.Contains("QuestionContent")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContent = (string) content.GetValueForProperty("QuestionContent",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContent, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContent = (string) content.GetValueForProperty("QuestionContent",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContent, global::System.Convert.ToString); } if (content.Contains("QuestionContentType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContentType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType?) content.GetValueForProperty("QuestionContentType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContentType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContentType = (string) content.GetValueForProperty("QuestionContentType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContentType, global::System.Convert.ToString); } if (content.Contains("ResponseHint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseHint = (string) content.GetValueForProperty("ResponseHint",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseHint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseHint = (string) content.GetValueForProperty("ResponseHint",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseHint, global::System.Convert.ToString); } if (content.Contains("RecommendedOption")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).RecommendedOption = (string) content.GetValueForProperty("RecommendedOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).RecommendedOption, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).RecommendedOption = (string) content.GetValueForProperty("RecommendedOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).RecommendedOption, global::System.Convert.ToString); } if (content.Contains("SelectedOptionValue")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).SelectedOptionValue = (string) content.GetValueForProperty("SelectedOptionValue",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).SelectedOptionValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).SelectedOptionValue = (string) content.GetValueForProperty("SelectedOptionValue",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).SelectedOptionValue, global::System.Convert.ToString); } if (content.Contains("ResponseOption")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseOption = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[]) content.GetValueForProperty("ResponseOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseOption, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseOptionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseOption = (System.Collections.Generic.List) content.GetValueForProperty("ResponseOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseOption, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseOptionTypeConverter.ConvertFrom)); } if (content.Contains("ResponseValidationPropertyRegex")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyRegex = (string) content.GetValueForProperty("ResponseValidationPropertyRegex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyRegex, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyRegex = (string) content.GetValueForProperty("ResponseValidationPropertyRegex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyRegex, global::System.Convert.ToString); } if (content.Contains("ResponseValidationPropertyValidationScope")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationScope = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope?) content.GetValueForProperty("ResponseValidationPropertyValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationScope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationScope = (string) content.GetValueForProperty("ResponseValidationPropertyValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationScope, global::System.Convert.ToString); } if (content.Contains("ResponseValidationPropertyMaxLength")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyMaxLength = (long?) content.GetValueForProperty("ResponseValidationPropertyMaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyMaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyMaxLength = (long?) content.GetValueForProperty("ResponseValidationPropertyMaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyMaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("ResponseValidationPropertyIsRequired")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyIsRequired = (bool?) content.GetValueForProperty("ResponseValidationPropertyIsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyIsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyIsRequired = (bool?) content.GetValueForProperty("ResponseValidationPropertyIsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyIsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ResponseValidationPropertyValidationErrorMessage")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage = (string) content.GetValueForProperty("ResponseValidationPropertyValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage = (string) content.GetValueForProperty("ResponseValidationPropertyValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -188,63 +188,63 @@ internal StepInput(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("ResponseValidationProperty")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationProperty = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties) content.GetValueForProperty("ResponseValidationProperty",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationProperty, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationProperty = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties) content.GetValueForProperty("ResponseValidationProperty",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationProperty, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationPropertiesTypeConverter.ConvertFrom); } if (content.Contains("QuestionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionId, global::System.Convert.ToString); } if (content.Contains("QuestionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType?) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionType = (string) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionType, global::System.Convert.ToString); } if (content.Contains("QuestionTitle")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionTitle = (string) content.GetValueForProperty("QuestionTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionTitle, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionTitle = (string) content.GetValueForProperty("QuestionTitle",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionTitle, global::System.Convert.ToString); } if (content.Contains("QuestionContent")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContent = (string) content.GetValueForProperty("QuestionContent",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContent, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContent = (string) content.GetValueForProperty("QuestionContent",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContent, global::System.Convert.ToString); } if (content.Contains("QuestionContentType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContentType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType?) content.GetValueForProperty("QuestionContentType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).QuestionContentType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContentType = (string) content.GetValueForProperty("QuestionContentType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).QuestionContentType, global::System.Convert.ToString); } if (content.Contains("ResponseHint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseHint = (string) content.GetValueForProperty("ResponseHint",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseHint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseHint = (string) content.GetValueForProperty("ResponseHint",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseHint, global::System.Convert.ToString); } if (content.Contains("RecommendedOption")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).RecommendedOption = (string) content.GetValueForProperty("RecommendedOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).RecommendedOption, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).RecommendedOption = (string) content.GetValueForProperty("RecommendedOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).RecommendedOption, global::System.Convert.ToString); } if (content.Contains("SelectedOptionValue")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).SelectedOptionValue = (string) content.GetValueForProperty("SelectedOptionValue",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).SelectedOptionValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).SelectedOptionValue = (string) content.GetValueForProperty("SelectedOptionValue",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).SelectedOptionValue, global::System.Convert.ToString); } if (content.Contains("ResponseOption")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseOption = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[]) content.GetValueForProperty("ResponseOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseOption, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseOptionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseOption = (System.Collections.Generic.List) content.GetValueForProperty("ResponseOption",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseOption, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseOptionTypeConverter.ConvertFrom)); } if (content.Contains("ResponseValidationPropertyRegex")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyRegex = (string) content.GetValueForProperty("ResponseValidationPropertyRegex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyRegex, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyRegex = (string) content.GetValueForProperty("ResponseValidationPropertyRegex",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyRegex, global::System.Convert.ToString); } if (content.Contains("ResponseValidationPropertyValidationScope")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationScope = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope?) content.GetValueForProperty("ResponseValidationPropertyValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationScope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationScope = (string) content.GetValueForProperty("ResponseValidationPropertyValidationScope",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationScope, global::System.Convert.ToString); } if (content.Contains("ResponseValidationPropertyMaxLength")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyMaxLength = (long?) content.GetValueForProperty("ResponseValidationPropertyMaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyMaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyMaxLength = (long?) content.GetValueForProperty("ResponseValidationPropertyMaxLength",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyMaxLength, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("ResponseValidationPropertyIsRequired")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyIsRequired = (bool?) content.GetValueForProperty("ResponseValidationPropertyIsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyIsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyIsRequired = (bool?) content.GetValueForProperty("ResponseValidationPropertyIsRequired",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyIsRequired, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ResponseValidationPropertyValidationErrorMessage")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage = (string) content.GetValueForProperty("ResponseValidationPropertyValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage = (string) content.GetValueForProperty("ResponseValidationPropertyValidationErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal)this).ResponseValidationPropertyValidationErrorMessage, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.TypeConverter.cs index c8130e9ff517..b37cb639c251 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.cs similarity index 67% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.cs index 7ac4a2a83586..7e3036402c7c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.cs @@ -3,18 +3,18 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Details of step input. public partial class StepInput : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal { /// Internal Acessors for ResponseValidationProperty - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInputInternal.ResponseValidationProperty { get => (this._responseValidationProperty = this._responseValidationProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationProperties()); set { {_responseValidationProperty = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInputInternal.ResponseValidationProperty { get => (this._responseValidationProperty = this._responseValidationProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationProperties()); set { {_responseValidationProperty = value;} } } /// Backing field for property. private string _questionContent; @@ -24,11 +24,11 @@ public partial class StepInput : public string QuestionContent { get => this._questionContent; set => this._questionContent = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType? _questionContentType; + private string _questionContentType; /// Default is Text. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType? QuestionContentType { get => this._questionContentType; set => this._questionContentType = value; } + public string QuestionContentType { get => this._questionContentType; set => this._questionContentType = value; } /// Backing field for property. private string _questionId; @@ -45,11 +45,11 @@ public partial class StepInput : public string QuestionTitle { get => this._questionTitle; set => this._questionTitle = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? _questionType; + private string _questionType; /// Type of Question [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? QuestionType { get => this._questionType; set => this._questionType = value; } + public string QuestionType { get => this._questionType; set => this._questionType = value; } /// Backing field for property. private string _recommendedOption; @@ -66,37 +66,37 @@ public partial class StepInput : public string ResponseHint { get => this._responseHint; set => this._responseHint = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[] _responseOption; + private System.Collections.Generic.List _responseOption; [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[] ResponseOption { get => this._responseOption; set => this._responseOption = value; } + public System.Collections.Generic.List ResponseOption { get => this._responseOption; set => this._responseOption = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties _responseValidationProperty; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties _responseValidationProperty; /// Troubleshooter step input response validation properties [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties ResponseValidationProperty { get => (this._responseValidationProperty = this._responseValidationProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationProperties()); set => this._responseValidationProperty = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties ResponseValidationProperty { get => (this._responseValidationProperty = this._responseValidationProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationProperties()); set => this._responseValidationProperty = value; } /// Default True [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public bool? ResponseValidationPropertyIsRequired { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).IsRequired; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).IsRequired = value ?? default(bool); } + public bool? ResponseValidationPropertyIsRequired { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).IsRequired; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).IsRequired = value ?? default(bool); } /// Max text input (open Ended Text). [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public long? ResponseValidationPropertyMaxLength { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).MaxLength; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).MaxLength = value ?? default(long); } + public long? ResponseValidationPropertyMaxLength { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).MaxLength; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).MaxLength = value ?? default(long); } /// Regex used for the input validation. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string ResponseValidationPropertyRegex { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).Regex; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).Regex = value ?? null; } + public string ResponseValidationPropertyRegex { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).Regex; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).Regex = value ?? null; } /// Validation Error Message. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public string ResponseValidationPropertyValidationErrorMessage { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationErrorMessage; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationErrorMessage = value ?? null; } + public string ResponseValidationPropertyValidationErrorMessage { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationErrorMessage; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationErrorMessage = value ?? null; } /// Validation scope [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? ResponseValidationPropertyValidationScope { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationScope; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationScope = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope)""); } + public string ResponseValidationPropertyValidationScope { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationScope; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationPropertiesInternal)ResponseValidationProperty).ValidationScope = value ?? null; } /// Backing field for property. private string _selectedOptionValue; @@ -119,6 +119,9 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"User question content.", SerializedName = @"questionContent", PossibleTypes = new [] { typeof(string) })] @@ -127,14 +130,21 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Default is Text.", SerializedName = @"questionContentType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType? QuestionContentType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Text", "Html", "Markdown")] + string QuestionContentType { get; set; } /// Use Index as QuestionId. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Use Index as QuestionId.", SerializedName = @"questionId", PossibleTypes = new [] { typeof(string) })] @@ -143,6 +153,9 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Question title", SerializedName = @"questionTitle", PossibleTypes = new [] { typeof(string) })] @@ -151,14 +164,21 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Type of Question", SerializedName = @"questionType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? QuestionType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("RadioButton", "Dropdown", "TextInput", "MultiLineInfoBox", "DateTimePicker", "MultiSelect")] + string QuestionType { get; set; } /// Result of Automate step. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Result of Automate step.", SerializedName = @"recommendedOption", PossibleTypes = new [] { typeof(string) })] @@ -167,6 +187,9 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Place holder text for response hints.", SerializedName = @"responseHint", PossibleTypes = new [] { typeof(string) })] @@ -175,14 +198,20 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"responseOptions", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[] ResponseOption { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption) })] + System.Collections.Generic.List ResponseOption { get; set; } /// Default True [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Default True", SerializedName = @"isRequired", PossibleTypes = new [] { typeof(bool) })] @@ -191,6 +220,9 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Max text input (open Ended Text).", SerializedName = @"maxLength", PossibleTypes = new [] { typeof(long) })] @@ -199,6 +231,9 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Regex used for the input validation.", SerializedName = @"regex", PossibleTypes = new [] { typeof(string) })] @@ -207,6 +242,9 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Validation Error Message.", SerializedName = @"validationErrorMessage", PossibleTypes = new [] { typeof(string) })] @@ -215,14 +253,21 @@ public partial interface IStepInput : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Validation scope", SerializedName = @"validationScope", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? ResponseValidationPropertyValidationScope { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("None", "URLFormat", "GuidFormat", "IpAddressFormat", "NumberOnlyFormat")] + string ResponseValidationPropertyValidationScope { get; set; } /// Text of response that was selected. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Text of response that was selected.", SerializedName = @"selectedOptionValue", PossibleTypes = new [] { typeof(string) })] @@ -236,21 +281,23 @@ internal partial interface IStepInputInternal /// User question content. string QuestionContent { get; set; } /// Default is Text. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType? QuestionContentType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Text", "Html", "Markdown")] + string QuestionContentType { get; set; } /// Use Index as QuestionId. string QuestionId { get; set; } /// Question title string QuestionTitle { get; set; } /// Type of Question - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? QuestionType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("RadioButton", "Dropdown", "TextInput", "MultiLineInfoBox", "DateTimePicker", "MultiSelect")] + string QuestionType { get; set; } /// Result of Automate step. string RecommendedOption { get; set; } /// Place holder text for response hints. string ResponseHint { get; set; } - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[] ResponseOption { get; set; } + System.Collections.Generic.List ResponseOption { get; set; } /// Troubleshooter step input response validation properties - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseValidationProperties ResponseValidationProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseValidationProperties ResponseValidationProperty { get; set; } /// Default True bool? ResponseValidationPropertyIsRequired { get; set; } /// Max text input (open Ended Text). @@ -260,7 +307,8 @@ internal partial interface IStepInputInternal /// Validation Error Message. string ResponseValidationPropertyValidationErrorMessage { get; set; } /// Validation scope - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope? ResponseValidationPropertyValidationScope { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("None", "URLFormat", "GuidFormat", "IpAddressFormat", "NumberOnlyFormat")] + string ResponseValidationPropertyValidationScope { get; set; } /// Text of response that was selected. string SelectedOptionValue { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.json.cs similarity index 89% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.json.cs index c60494c03578..87b3201502ef 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/StepInput.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/StepInput.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class StepInput partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new StepInput(json) : null; } @@ -77,16 +75,16 @@ internal StepInput(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Json { return; } - {_responseValidationProperty = If( json?.PropertyT("responseValidationProperties"), out var __jsonResponseValidationProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseValidationProperties.FromJson(__jsonResponseValidationProperties) : ResponseValidationProperty;} - {_questionId = If( json?.PropertyT("questionId"), out var __jsonQuestionId) ? (string)__jsonQuestionId : (string)QuestionId;} - {_questionType = If( json?.PropertyT("questionType"), out var __jsonQuestionType) ? (string)__jsonQuestionType : (string)QuestionType;} - {_questionTitle = If( json?.PropertyT("questionTitle"), out var __jsonQuestionTitle) ? (string)__jsonQuestionTitle : (string)QuestionTitle;} - {_questionContent = If( json?.PropertyT("questionContent"), out var __jsonQuestionContent) ? (string)__jsonQuestionContent : (string)QuestionContent;} - {_questionContentType = If( json?.PropertyT("questionContentType"), out var __jsonQuestionContentType) ? (string)__jsonQuestionContentType : (string)QuestionContentType;} - {_responseHint = If( json?.PropertyT("responseHint"), out var __jsonResponseHint) ? (string)__jsonResponseHint : (string)ResponseHint;} - {_recommendedOption = If( json?.PropertyT("recommendedOption"), out var __jsonRecommendedOption) ? (string)__jsonRecommendedOption : (string)RecommendedOption;} - {_selectedOptionValue = If( json?.PropertyT("selectedOptionValue"), out var __jsonSelectedOptionValue) ? (string)__jsonSelectedOptionValue : (string)SelectedOptionValue;} - {_responseOption = If( json?.PropertyT("responseOptions"), out var __jsonResponseOptions) ? If( __jsonResponseOptions as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ResponseOption.FromJson(__u) )) ))() : null : ResponseOption;} + {_responseValidationProperty = If( json?.PropertyT("responseValidationProperties"), out var __jsonResponseValidationProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseValidationProperties.FromJson(__jsonResponseValidationProperties) : _responseValidationProperty;} + {_questionId = If( json?.PropertyT("questionId"), out var __jsonQuestionId) ? (string)__jsonQuestionId : (string)_questionId;} + {_questionType = If( json?.PropertyT("questionType"), out var __jsonQuestionType) ? (string)__jsonQuestionType : (string)_questionType;} + {_questionTitle = If( json?.PropertyT("questionTitle"), out var __jsonQuestionTitle) ? (string)__jsonQuestionTitle : (string)_questionTitle;} + {_questionContent = If( json?.PropertyT("questionContent"), out var __jsonQuestionContent) ? (string)__jsonQuestionContent : (string)_questionContent;} + {_questionContentType = If( json?.PropertyT("questionContentType"), out var __jsonQuestionContentType) ? (string)__jsonQuestionContentType : (string)_questionContentType;} + {_responseHint = If( json?.PropertyT("responseHint"), out var __jsonResponseHint) ? (string)__jsonResponseHint : (string)_responseHint;} + {_recommendedOption = If( json?.PropertyT("recommendedOption"), out var __jsonRecommendedOption) ? (string)__jsonRecommendedOption : (string)_recommendedOption;} + {_selectedOptionValue = If( json?.PropertyT("selectedOptionValue"), out var __jsonSelectedOptionValue) ? (string)__jsonSelectedOptionValue : (string)_selectedOptionValue;} + {_responseOption = If( json?.PropertyT("responseOptions"), out var __jsonResponseOptions) ? If( __jsonResponseOptions as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ResponseOption.FromJson(__u) )) ))() : null : _responseOption;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.PowerShell.cs similarity index 67% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.PowerShell.cs index 766ec32ecef6..bc6bab3cd2d0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class SystemData partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SystemData(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SystemData(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDa /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,33 +111,33 @@ internal SystemData(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("CreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); } if (content.Contains("CreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedByType = (string) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedByType, global::System.Convert.ToString); } if (content.Contains("CreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("LastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); } if (content.Contains("LastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedByType = (string) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedByType, global::System.Convert.ToString); } if (content.Contains("LastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -152,27 +152,27 @@ internal SystemData(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("CreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); } if (content.Contains("CreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedByType = (string) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedByType, global::System.Convert.ToString); } if (content.Contains("CreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("LastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); } if (content.Contains("LastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedByType = (string) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedByType, global::System.Convert.ToString); } if (content.Contains("LastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.TypeConverter.cs index 1cfa4dcf3862..93a6a9c4afe9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.cs index bd5811f20e92..039024ac89c5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Metadata pertaining to creation and last modification of the resource. public partial class SystemData : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemDataInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemDataInternal { /// Backing field for property. @@ -28,11 +28,11 @@ public partial class SystemData : public string CreatedBy { get => this._createdBy; set => this._createdBy = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? _createdByType; + private string _createdByType; /// The type of identity that created the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? CreatedByType { get => this._createdByType; set => this._createdByType = value; } + public string CreatedByType { get => this._createdByType; set => this._createdByType = value; } /// Backing field for property. private global::System.DateTime? _lastModifiedAt; @@ -49,11 +49,11 @@ public partial class SystemData : public string LastModifiedBy { get => this._lastModifiedBy; set => this._lastModifiedBy = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? _lastModifiedByType; + private string _lastModifiedByType; /// The type of identity that last modified the resource. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? LastModifiedByType { get => this._lastModifiedByType; set => this._lastModifiedByType = value; } + public string LastModifiedByType { get => this._lastModifiedByType; set => this._lastModifiedByType = value; } /// Creates an new instance. public SystemData() @@ -69,6 +69,9 @@ public partial interface ISystemData : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The timestamp of resource creation (UTC).", SerializedName = @"createdAt", PossibleTypes = new [] { typeof(global::System.DateTime) })] @@ -77,6 +80,9 @@ public partial interface ISystemData : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The identity that created the resource.", SerializedName = @"createdBy", PossibleTypes = new [] { typeof(string) })] @@ -85,14 +91,21 @@ public partial interface ISystemData : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The type of identity that created the resource.", SerializedName = @"createdByType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? CreatedByType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string CreatedByType { get; set; } /// The timestamp of resource last modification (UTC) [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The timestamp of resource last modification (UTC)", SerializedName = @"lastModifiedAt", PossibleTypes = new [] { typeof(global::System.DateTime) })] @@ -101,6 +114,9 @@ public partial interface ISystemData : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The identity that last modified the resource.", SerializedName = @"lastModifiedBy", PossibleTypes = new [] { typeof(string) })] @@ -109,10 +125,14 @@ public partial interface ISystemData : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"The type of identity that last modified the resource.", SerializedName = @"lastModifiedByType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? LastModifiedByType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string LastModifiedByType { get; set; } } /// Metadata pertaining to creation and last modification of the resource. @@ -124,13 +144,15 @@ internal partial interface ISystemDataInternal /// The identity that created the resource. string CreatedBy { get; set; } /// The type of identity that created the resource. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? CreatedByType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string CreatedByType { get; set; } /// The timestamp of resource last modification (UTC) global::System.DateTime? LastModifiedAt { get; set; } /// The identity that last modified the resource. string LastModifiedBy { get; set; } /// The type of identity that last modified the resource. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType? LastModifiedByType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("User", "Application", "ManagedIdentity", "Key")] + string LastModifiedByType { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.json.cs index f269c889a4ac..0a7f8ddc6cbc 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api40/SystemData.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/SystemData.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40 +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class SystemData partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new SystemData(json) : null; } @@ -77,12 +75,12 @@ internal SystemData(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Jso { return; } - {_createdBy = If( json?.PropertyT("createdBy"), out var __jsonCreatedBy) ? (string)__jsonCreatedBy : (string)CreatedBy;} - {_createdByType = If( json?.PropertyT("createdByType"), out var __jsonCreatedByType) ? (string)__jsonCreatedByType : (string)CreatedByType;} - {_createdAt = If( json?.PropertyT("createdAt"), out var __jsonCreatedAt) ? global::System.DateTime.TryParse((string)__jsonCreatedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedAtValue) ? __jsonCreatedAtValue : CreatedAt : CreatedAt;} - {_lastModifiedBy = If( json?.PropertyT("lastModifiedBy"), out var __jsonLastModifiedBy) ? (string)__jsonLastModifiedBy : (string)LastModifiedBy;} - {_lastModifiedByType = If( json?.PropertyT("lastModifiedByType"), out var __jsonLastModifiedByType) ? (string)__jsonLastModifiedByType : (string)LastModifiedByType;} - {_lastModifiedAt = If( json?.PropertyT("lastModifiedAt"), out var __jsonLastModifiedAt) ? global::System.DateTime.TryParse((string)__jsonLastModifiedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonLastModifiedAtValue) ? __jsonLastModifiedAtValue : LastModifiedAt : LastModifiedAt;} + {_createdBy = If( json?.PropertyT("createdBy"), out var __jsonCreatedBy) ? (string)__jsonCreatedBy : (string)_createdBy;} + {_createdByType = If( json?.PropertyT("createdByType"), out var __jsonCreatedByType) ? (string)__jsonCreatedByType : (string)_createdByType;} + {_createdAt = If( json?.PropertyT("createdAt"), out var __jsonCreatedAt) ? global::System.DateTime.TryParse((string)__jsonCreatedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedAtValue) ? __jsonCreatedAtValue : _createdAt : _createdAt;} + {_lastModifiedBy = If( json?.PropertyT("lastModifiedBy"), out var __jsonLastModifiedBy) ? (string)__jsonLastModifiedBy : (string)_lastModifiedBy;} + {_lastModifiedByType = If( json?.PropertyT("lastModifiedByType"), out var __jsonLastModifiedByType) ? (string)__jsonLastModifiedByType : (string)_lastModifiedByType;} + {_lastModifiedAt = If( json?.PropertyT("lastModifiedAt"), out var __jsonLastModifiedAt) ? global::System.DateTime.TryParse((string)__jsonLastModifiedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonLastModifiedAtValue) ? __jsonLastModifiedAtValue : _lastModifiedAt : _lastModifiedAt;} AfterFromJson(json); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.PowerShell.cs similarity index 79% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.PowerShell.cs index 030b1c682e40..f1c2e4a1d486 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -66,27 +66,27 @@ public partial class TriggerCriterion partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TriggerCriterion(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TriggerCriterion(content); } @@ -96,7 +96,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -116,7 +116,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -131,17 +131,17 @@ internal TriggerCriterion(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name?) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Value, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -156,11 +156,11 @@ internal TriggerCriterion(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name?) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal)this).Value, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.TypeConverter.cs index af543952b34c..8fe13a0c0dd6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.cs index 9fbdcf006122..152a69126721 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -12,16 +12,16 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview /// PUT request. ReplacementKey is the only supported trigger type for Solution PATCH request. /// public partial class TriggerCriterion : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterionInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterionInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name? _name; + private string _name; /// Trigger criterion name. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name? Name { get => this._name; set => this._name = value; } + public string Name { get => this._name; set => this._name = value; } /// Backing field for property. private string _value; @@ -45,14 +45,21 @@ public partial interface ITriggerCriterion : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Trigger criterion name.", SerializedName = @"name", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name? Name { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("SolutionId", "ProblemClassificationId", "ReplacementKey")] + string Name { get; set; } /// Trigger criterion value. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Trigger criterion value.", SerializedName = @"value", PossibleTypes = new [] { typeof(string) })] @@ -65,7 +72,8 @@ internal partial interface ITriggerCriterionInternal { /// Trigger criterion name. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name? Name { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("SolutionId", "ProblemClassificationId", "ReplacementKey")] + string Name { get; set; } /// Trigger criterion value. string Value { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.json.cs index fceab28d996b..079f7472876d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TriggerCriterion.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TriggerCriterion.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -57,13 +57,13 @@ public partial class TriggerCriterion partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new TriggerCriterion(json) : null; } @@ -105,8 +105,8 @@ internal TriggerCriterion(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Js { return; } - {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)_name;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)_value;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.PowerShell.cs similarity index 65% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.PowerShell.cs index 541ab43ce412..344a8a07d4ee 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class TroubleshooterInstanceProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TroubleshooterInstanceProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TroubleshooterInstanceProperties(content); } @@ -95,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -115,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -130,25 +128,25 @@ internal TroubleshooterInstanceProperties(global::System.Collections.IDictionary // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("Step")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Step = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Step, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Step = (System.Collections.Generic.List) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Step, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -163,19 +161,19 @@ internal TroubleshooterInstanceProperties(global::System.Management.Automation.P // actually deserialize if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("Step")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Step = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal)this).Step, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Step = (System.Collections.Generic.List) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)this).Step, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.TypeConverter.cs index 438b864794b9..421ede5ddecf 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -107,14 +107,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.cs similarity index 61% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.cs index 8a39e4202d26..779ea4bc2b71 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.cs @@ -3,35 +3,35 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Troubleshooter Instance properties. public partial class TroubleshooterInstanceProperties : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal { /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for Step - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesInternal.Step { get => this._step; set { {_step = value;} } } + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal.Step { get => this._step; set { {_step = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters _parameter; /// Client input parameters to run Troubleshooter Resource [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParameters()); set => this._parameter = value; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParameters()); set => this._parameter = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? _provisioningState; + private string _provisioningState; /// Status of troubleshooter provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? ProvisioningState { get => this._provisioningState; } + public string ProvisioningState { get => this._provisioningState; } /// Backing field for property. private string _solutionId; @@ -41,11 +41,11 @@ public partial class TroubleshooterInstanceProperties : public string SolutionId { get => this._solutionId; set => this._solutionId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] _step; + private System.Collections.Generic.List _step; /// List of step object. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Step { get => this._step; } + public System.Collections.Generic.List Step { get => this._step; } /// Creates an new instance. public TroubleshooterInstanceProperties() @@ -61,22 +61,32 @@ public partial interface ITroubleshooterInstanceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Client input parameters to run Troubleshooter Resource", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } /// Status of troubleshooter provisioning. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"Status of troubleshooter provisioning.", SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? ProvisioningState { get; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "Failed", "Canceled", "Running", "AutoContinue")] + string ProvisioningState { get; } /// Solution Id to identify single troubleshooter. [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Solution Id to identify single troubleshooter.", SerializedName = @"solutionId", PossibleTypes = new [] { typeof(string) })] @@ -85,10 +95,13 @@ public partial interface ITroubleshooterInstanceProperties : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = true, + Read = true, + Create = false, + Update = false, Description = @"List of step object.", SerializedName = @"steps", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Step { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep) })] + System.Collections.Generic.List Step { get; } } /// Troubleshooter Instance properties. @@ -96,13 +109,14 @@ internal partial interface ITroubleshooterInstancePropertiesInternal { /// Client input parameters to run Troubleshooter Resource - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } /// Status of troubleshooter provisioning. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState? ProvisioningState { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "Failed", "Canceled", "Running", "AutoContinue")] + string ProvisioningState { get; set; } /// Solution Id to identify single troubleshooter. string SolutionId { get; set; } /// List of step object. - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[] Step { get; set; } + System.Collections.Generic.List Step { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.json.cs index f3e8cc97f3d7..d7f5afb0c0ae 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstanceProperties.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstanceProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class TroubleshooterInstanceProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new TroubleshooterInstanceProperties(json) : null; } @@ -86,11 +86,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( } AddIf( null != (((object)this._solutionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._solutionId.ToString()) : null, "solutionId" ,container.Add ); AddIf( null != this._parameter ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._parameter.ToJson(null,serializationMode) : null, "parameters" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeReadOnly)) + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeRead)) { if (null != this._step) { @@ -118,10 +118,10 @@ internal TroubleshooterInstanceProperties(Microsoft.Azure.PowerShell.Cmdlets.Sel { return; } - {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)SolutionId;} - {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParameters.FromJson(__jsonParameters) : Parameter;} - {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} - {_step = If( json?.PropertyT("steps"), out var __jsonSteps) ? If( __jsonSteps as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.Step.FromJson(__u) )) ))() : null : Step;} + {_solutionId = If( json?.PropertyT("solutionId"), out var __jsonSolutionId) ? (string)__jsonSolutionId : (string)_solutionId;} + {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParameters.FromJson(__jsonParameters) : _parameter;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)_provisioningState;} + {_step = If( json?.PropertyT("steps"), out var __jsonSteps) ? If( __jsonSteps as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Step.FromJson(__u) )) ))() : null : _step;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.PowerShell.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.PowerShell.cs index 5b2c6a4abb90..68cec91ccea1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class TroubleshooterInstancePropertiesParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TroubleshooterInstancePropertiesParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TroubleshooterInstancePropertiesParameters(content); } @@ -98,7 +98,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -118,7 +118,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -137,7 +137,7 @@ internal TroubleshooterInstancePropertiesParameters(global::System.Collections.I } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.TypeConverter.cs index 044036ed48ff..07350d9f6bef 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -110,14 +110,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.cs index 74721b933869..90a3877b019e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Client input parameters to run Troubleshooter Resource public partial class TroubleshooterInstancePropertiesParameters : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParametersInternal { /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.dictionary.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.dictionary.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.dictionary.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.dictionary.cs index b61e89ce9462..d652b6f19100 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.dictionary.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParameters source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParameters source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.json.cs index 7445a54aad47..7a93c126fe41 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterInstancePropertiesParameters.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterInstancePropertiesParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class TroubleshooterInstancePropertiesParameters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new TroubleshooterInstancePropertiesParameters(json) : null; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.PowerShell.cs similarity index 50% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.PowerShell.cs index aacd4c6bee6b..9deb17d03c14 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class TroubleshooterResource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TroubleshooterResource(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TroubleshooterResource(content); } @@ -95,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -115,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -130,69 +128,69 @@ internal TroubleshooterResource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("Step")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Step = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Step, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Step = (System.Collections.Generic.List) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Step, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -207,63 +205,63 @@ internal TroubleshooterResource(global::System.Management.Automation.PSObject co // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstanceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType = (string) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataCreatedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType = (string) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedByType, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("SolutionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).SolutionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).SolutionId = (string) content.GetValueForProperty("SolutionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).SolutionId, global::System.Convert.ToString); } if (content.Contains("Parameter")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstancePropertiesParametersTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("Step")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Step = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResourceInternal)this).Step, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.StepTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Step = (System.Collections.Generic.List) content.GetValueForProperty("Step",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal)this).Step, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.StepTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.TypeConverter.cs index 7f3cea063254..d55dbe831f7c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.cs new file mode 100644 index 000000000000..9cba1dfaa26f --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.cs @@ -0,0 +1,220 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// Troubleshooter response. + public partial class TroubleshooterResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(); + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Id = value ?? null; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name = value ?? null; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// Internal Acessors for SystemDataCreatedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataCreatedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy = value ?? null; } + + /// Internal Acessors for SystemDataCreatedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedAt + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// Internal Acessors for SystemDataLastModifiedBy + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy = value ?? null; } + + /// Internal Acessors for SystemDataLastModifiedByType + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType = value ?? null; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstanceProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).ProvisioningState = value ?? null; } + + /// Internal Acessors for Step + System.Collections.Generic.List Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResourceInternal.Step { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).Step; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).Step = value ?? null /* arrayOf */; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Name; } + + /// Client input parameters to run Troubleshooter Resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).Parameter = value ?? null /* model class */; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties _property; + + /// Troubleshooter Instance properties. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstanceProperties()); set => this._property = value; } + + /// Status of troubleshooter provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).ProvisioningState; } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// Solution Id to identify single troubleshooter. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public string SolutionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).SolutionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).SolutionId = value ?? null; } + + /// List of step object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inlined)] + public System.Collections.Generic.List Step { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesInternal)Property).Step; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + internal Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemData = value ?? null /* model class */; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedAt; } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedBy; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataCreatedByType; } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedAt; } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedBy; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).SystemDataLastModifiedByType; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResourceInternal)__proxyResource).Type; } + + /// Creates an new instance. + public TroubleshooterResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__proxyResource), __proxyResource); + await eventListener.AssertObjectIsValid(nameof(__proxyResource), __proxyResource); + } + } + /// Troubleshooter response. + public partial interface ITroubleshooterResource : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResource + { + /// Client input parameters to run Troubleshooter Resource + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Client input parameters to run Troubleshooter Resource", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) })] + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } + /// Status of troubleshooter provisioning. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"Status of troubleshooter provisioning.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "Failed", "Canceled", "Running", "AutoContinue")] + string ProvisioningState { get; } + /// Solution Id to identify single troubleshooter. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Read = true, + Create = true, + Update = true, + Description = @"Solution Id to identify single troubleshooter.", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + string SolutionId { get; set; } + /// List of step object. + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = true, + Read = true, + Create = false, + Update = false, + Description = @"List of step object.", + SerializedName = @"steps", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep) })] + System.Collections.Generic.List Step { get; } + + } + /// Troubleshooter response. + internal partial interface ITroubleshooterResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IProxyResourceInternal + { + /// Client input parameters to run Troubleshooter Resource + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get; set; } + /// Troubleshooter Instance properties. + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstanceProperties Property { get; set; } + /// Status of troubleshooter provisioning. + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("Succeeded", "Failed", "Canceled", "Running", "AutoContinue")] + string ProvisioningState { get; set; } + /// Solution Id to identify single troubleshooter. + string SolutionId { get; set; } + /// List of step object. + System.Collections.Generic.List Step { get; set; } + + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.json.cs similarity index 91% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.json.cs index d108e0b271fa..471b1bd377a4 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResource.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class TroubleshooterResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new TroubleshooterResource(json) : null; } @@ -84,7 +84,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode ToJson( { return container; } - __resource?.ToJson(container, serializationMode); + __proxyResource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; @@ -102,8 +102,8 @@ internal TroubleshooterResource(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runt { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterInstanceProperties.FromJson(__jsonProperties) : Property;} + __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ProxyResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterInstanceProperties.FromJson(__jsonProperties) : _property;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.PowerShell.cs similarity index 74% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.PowerShell.cs index 6332db8147e0..d39322c03ec0 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,29 +63,27 @@ public partial class TroubleshooterResponse partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TroubleshooterResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TroubleshooterResponse(content); } @@ -95,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -115,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -130,21 +128,21 @@ internal TroubleshooterResponse(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("QuestionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionId, global::System.Convert.ToString); } if (content.Contains("QuestionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType?) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionType = (string) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionType, global::System.Convert.ToString); } if (content.Contains("Response")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).Response = (string) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).Response, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).Response = (string) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).Response, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -159,15 +157,15 @@ internal TroubleshooterResponse(global::System.Management.Automation.PSObject co // actually deserialize if (content.Contains("QuestionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionId = (string) content.GetValueForProperty("QuestionId",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionId, global::System.Convert.ToString); } if (content.Contains("QuestionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionType = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType?) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).QuestionType, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionType = (string) content.GetValueForProperty("QuestionType",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).QuestionType, global::System.Convert.ToString); } if (content.Contains("Response")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).Response = (string) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal)this).Response, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).Response = (string) content.GetValueForProperty("Response",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal)this).Response, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.TypeConverter.cs index f6db1b116281..8b463bbe7212 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.cs index a5b23681316b..d6f4ea35491f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// User Response for Troubleshooter continue request public partial class TroubleshooterResponse : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponseInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponseInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class TroubleshooterResponse : public string QuestionId { get => this._questionId; set => this._questionId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? _questionType; + private string _questionType; /// Type of Question [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? QuestionType { get => this._questionType; set => this._questionType = value; } + public string QuestionType { get => this._questionType; set => this._questionType = value; } /// Backing field for property. private string _response; @@ -50,6 +50,9 @@ public partial interface ITroubleshooterResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"id of the question.", SerializedName = @"questionId", PossibleTypes = new [] { typeof(string) })] @@ -58,16 +61,23 @@ public partial interface ITroubleshooterResponse : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Type of Question", SerializedName = @"questionType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? QuestionType { get; set; } + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("RadioButton", "Dropdown", "TextInput", "MultiLineInfoBox", "DateTimePicker", "MultiSelect")] + string QuestionType { get; set; } /// /// Response key for SingleInput. For Multi-line test/open ended question it is free form text /// [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Response key for SingleInput. For Multi-line test/open ended question it is free form text", SerializedName = @"response", PossibleTypes = new [] { typeof(string) })] @@ -81,7 +91,8 @@ internal partial interface ITroubleshooterResponseInternal /// id of the question. string QuestionId { get; set; } /// Type of Question - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType? QuestionType { get; set; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PSArgumentCompleterAttribute("RadioButton", "Dropdown", "TextInput", "MultiLineInfoBox", "DateTimePicker", "MultiSelect")] + string QuestionType { get; set; } /// /// Response key for SingleInput. For Multi-line test/open ended question it is free form text /// diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.json.cs similarity index 94% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.json.cs index fab99a79a16d..5907c787685b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/TroubleshooterResponse.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshooterResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class TroubleshooterResponse partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new TroubleshooterResponse(json) : null; } @@ -103,9 +103,9 @@ internal TroubleshooterResponse(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runt { return; } - {_questionId = If( json?.PropertyT("questionId"), out var __jsonQuestionId) ? (string)__jsonQuestionId : (string)QuestionId;} - {_questionType = If( json?.PropertyT("questionType"), out var __jsonQuestionType) ? (string)__jsonQuestionType : (string)QuestionType;} - {_response = If( json?.PropertyT("response"), out var __jsonResponse) ? (string)__jsonResponse : (string)Response;} + {_questionId = If( json?.PropertyT("questionId"), out var __jsonQuestionId) ? (string)__jsonQuestionId : (string)_questionId;} + {_questionType = If( json?.PropertyT("questionType"), out var __jsonQuestionType) ? (string)__jsonQuestionType : (string)_questionType;} + {_response = If( json?.PropertyT("response"), out var __jsonResponse) ? (string)__jsonResponse : (string)_response;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersContinueNoContentResponseHeaders.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersContinueNoContentResponseHeaders.cs index 225f511dac23..a173e1a7b917 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersContinueNoContentResponseHeaders.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersContinueNoContentResponseHeaders.cs @@ -42,6 +42,9 @@ public partial interface ITroubleshootersContinueNoContentResponseHeaders [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"Location", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersEndNoContentResponseHeaders.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersEndNoContentResponseHeaders.cs index 28514bb09897..4460bd73a007 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersEndNoContentResponseHeaders.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/TroubleshootersEndNoContentResponseHeaders.cs @@ -42,6 +42,9 @@ public partial interface ITroubleshootersEndNoContentResponseHeaders [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"", SerializedName = @"Location", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.PowerShell.cs similarity index 77% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.PowerShell.cs index a9bb632d9b70..2e17ca8e459f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Video partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Video(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Video(content); } @@ -93,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -113,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -128,21 +128,21 @@ internal Video(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("Src")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -157,15 +157,15 @@ internal Video(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("Src")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.TypeConverter.cs index 375df7bdc50a..58c0f410ba11 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.cs similarity index 74% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.cs index 62cc2f4eb530..513d00ee23bc 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.cs @@ -3,21 +3,20 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Video detail public partial class Video : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoInternal, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoInternal, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IValidates { /// - /// Backing field for Inherited model + /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo __videoGroupVideo = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideo(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo __videoGroupVideo = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideo(); /// Backing field for property. private string _replacementKey; @@ -28,11 +27,11 @@ public partial class Video : /// Link to the video [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Src { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)__videoGroupVideo).Src; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)__videoGroupVideo).Src = value ?? null; } + public string Src { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)__videoGroupVideo).Src; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)__videoGroupVideo).Src = value ?? null; } /// Title of the video [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Inherited)] - public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)__videoGroupVideo).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)__videoGroupVideo).Title = value ?? null; } + public string Title { get => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)__videoGroupVideo).Title; set => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)__videoGroupVideo).Title = value ?? null; } /// Validates that this object meets the validation criteria. /// an instance that will receive validation @@ -55,12 +54,15 @@ public Video() /// Video detail public partial interface IVideo : Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo { /// Place holder used in HTML Content replace control with the insight content [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Place holder used in HTML Content replace control with the insight content", SerializedName = @"replacementKey", PossibleTypes = new [] { typeof(string) })] @@ -69,7 +71,7 @@ public partial interface IVideo : } /// Video detail internal partial interface IVideoInternal : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal { /// Place holder used in HTML Content replace control with the insight content string ReplacementKey { get; set; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.json.cs similarity index 92% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.json.cs index a4caae1b5f67..f1a799e2f301 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/Video.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Video.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class Video partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new Video(json) : null; } @@ -102,8 +100,8 @@ internal Video(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObje { return; } - __videoGroupVideo = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideo(json); - {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)ReplacementKey;} + __videoGroupVideo = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideo(json); + {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)_replacementKey;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.PowerShell.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.PowerShell.cs index f7f722ec98a4..72438bbedd59 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class VideoGroup partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new VideoGroup(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new VideoGroup(content); } @@ -93,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -113,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -128,17 +128,17 @@ internal VideoGroup(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Video")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).Video = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[]) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).Video, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).Video = (System.Collections.Generic.List) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).Video, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).ReplacementKey, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -153,11 +153,11 @@ internal VideoGroup(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Video")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).Video = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[]) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).Video, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).Video = (System.Collections.Generic.List) content.GetValueForProperty("Video",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).Video, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideoTypeConverter.ConvertFrom)); } if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal)this).ReplacementKey, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.TypeConverter.cs index 9406e13c5b1b..c597a4a1f223 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.cs similarity index 73% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.cs index 5d41be82cc92..863e70e00cd6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// Video group detail public partial class VideoGroup : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class VideoGroup : public string ReplacementKey { get => this._replacementKey; set => this._replacementKey = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[] _video; + private System.Collections.Generic.List _video; /// List of videos will be shown to customers [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[] Video { get => this._video; set => this._video = value; } + public System.Collections.Generic.List Video { get => this._video; set => this._video = value; } /// Creates an new instance. public VideoGroup() @@ -41,6 +41,9 @@ public partial interface IVideoGroup : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Place holder used in HTML Content replace control with the insight content", SerializedName = @"replacementKey", PossibleTypes = new [] { typeof(string) })] @@ -49,10 +52,13 @@ public partial interface IVideoGroup : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"List of videos will be shown to customers", SerializedName = @"videos", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[] Video { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo) })] + System.Collections.Generic.List Video { get; set; } } /// Video group detail @@ -62,7 +68,7 @@ internal partial interface IVideoGroupInternal /// Place holder used in HTML Content replace control with the insight content string ReplacementKey { get; set; } /// List of videos will be shown to customers - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[] Video { get; set; } + System.Collections.Generic.List Video { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.json.cs index 9275c5b7aca2..21bc4dba837a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroup.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroup.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class VideoGroup partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new VideoGroup(json) : null; } @@ -110,8 +108,8 @@ internal VideoGroup(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Jso { return; } - {_video = If( json?.PropertyT("videos"), out var __jsonVideos) ? If( __jsonVideos as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.VideoGroupVideo.FromJson(__u) )) ))() : null : Video;} - {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)ReplacementKey;} + {_video = If( json?.PropertyT("videos"), out var __jsonVideos) ? If( __jsonVideos as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.VideoGroupVideo.FromJson(__u) )) ))() : null : _video;} + {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)_replacementKey;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.PowerShell.cs similarity index 80% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.PowerShell.cs index 154a1caec5ef..4cc6b20bb574 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class VideoGroupVideo partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new VideoGroupVideo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new VideoGroupVideo(content); } @@ -93,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -113,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -128,17 +128,17 @@ internal VideoGroupVideo(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Src")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -153,11 +153,11 @@ internal VideoGroupVideo(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Src")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src = (string) content.GetValueForProperty("Src",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Src, global::System.Convert.ToString); } if (content.Contains("Title")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title = (string) content.GetValueForProperty("Title",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal)this).Title, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.TypeConverter.cs similarity index 96% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.TypeConverter.cs index 4aa62d9f599c..6ace6f6f949c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.cs similarity index 87% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.cs index 21beb1efdd8c..6b2c08e50b1a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// VideoGroup video detail public partial class VideoGroupVideo : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideoInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideoInternal { /// Backing field for property. @@ -41,6 +41,9 @@ public partial interface IVideoGroupVideo : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Link to the video", SerializedName = @"src", PossibleTypes = new [] { typeof(string) })] @@ -49,6 +52,9 @@ public partial interface IVideoGroupVideo : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Title of the video", SerializedName = @"title", PossibleTypes = new [] { typeof(string) })] diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.json.cs similarity index 93% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.json.cs index 9eb1ce52c570..25c3ebb89fd6 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/VideoGroupVideo.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/VideoGroupVideo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class VideoGroupVideo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new VideoGroupVideo(json) : null; } @@ -102,8 +102,8 @@ internal VideoGroupVideo(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Jso { return; } - {_src = If( json?.PropertyT("src"), out var __jsonSrc) ? (string)__jsonSrc : (string)Src;} - {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)Title;} + {_src = If( json?.PropertyT("src"), out var __jsonSrc) ? (string)__jsonSrc : (string)_src;} + {_title = If( json?.PropertyT("title"), out var __jsonTitle) ? (string)__jsonTitle : (string)_title;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.PowerShell.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.PowerShell.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.PowerShell.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.PowerShell.cs index b446e234fa72..e0d3902819ad 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.PowerShell.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class WebResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new WebResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new WebResult(content); } @@ -93,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -113,7 +113,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -128,17 +128,17 @@ internal WebResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("SearchResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).SearchResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[]) content.GetValueForProperty("SearchResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).SearchResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SearchResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).SearchResult = (System.Collections.Generic.List) content.GetValueForProperty("SearchResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).SearchResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SearchResultTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -153,11 +153,11 @@ internal WebResult(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("ReplacementKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).ReplacementKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).ReplacementKey = (string) content.GetValueForProperty("ReplacementKey",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).ReplacementKey, global::System.Convert.ToString); } if (content.Contains("SearchResult")) { - ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).SearchResult = (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[]) content.GetValueForProperty("SearchResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal)this).SearchResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SearchResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).SearchResult = (System.Collections.Generic.List) content.GetValueForProperty("SearchResult",((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal)this).SearchResult, __y => TypeConverterExtensions.SelectToList(__y, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SearchResultTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.TypeConverter.cs similarity index 97% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.TypeConverter.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.TypeConverter.cs index 29c5aba5f6ca..d05c09369a94 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.TypeConverter.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.cs similarity index 72% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.cs index 214fec0af9a5..6fccdb242413 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; /// AzureKB web result public partial class WebResult : - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResultInternal + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResultInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class WebResult : public string ReplacementKey { get => this._replacementKey; set => this._replacementKey = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[] _searchResult; + private System.Collections.Generic.List _searchResult; /// AzureKB search results [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Origin(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[] SearchResult { get => this._searchResult; set => this._searchResult = value; } + public System.Collections.Generic.List SearchResult { get => this._searchResult; set => this._searchResult = value; } /// Creates an new instance. public WebResult() @@ -41,6 +41,9 @@ public partial interface IWebResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"Place holder used in HTML Content replace control with the content", SerializedName = @"replacementKey", PossibleTypes = new [] { typeof(string) })] @@ -49,10 +52,13 @@ public partial interface IWebResult : [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, + Read = true, + Create = true, + Update = true, Description = @"AzureKB search results", SerializedName = @"searchResults", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult) })] - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[] SearchResult { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult) })] + System.Collections.Generic.List SearchResult { get; set; } } /// AzureKB web result @@ -62,7 +68,7 @@ internal partial interface IWebResultInternal /// Place holder used in HTML Content replace control with the content string ReplacementKey { get; set; } /// AzureKB search results - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[] SearchResult { get; set; } + System.Collections.Generic.List SearchResult { get; set; } } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.json.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.json.cs similarity index 88% rename from generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.json.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.json.cs index c83718717261..22a655930b1d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/Api20240301Preview/WebResult.json.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Models/WebResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; @@ -54,13 +54,11 @@ public partial class WebResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult. + public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json ? new WebResult(json) : null; } @@ -110,8 +108,8 @@ internal WebResult(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.Json { return; } - {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)ReplacementKey;} - {_searchResult = If( json?.PropertyT("searchResults"), out var __jsonSearchResults) ? If( __jsonSearchResults as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SearchResult.FromJson(__u) )) ))() : null : SearchResult;} + {_replacementKey = If( json?.PropertyT("replacementKey"), out var __jsonReplacementKey) ? (string)__jsonReplacementKey : (string)_replacementKey;} + {_searchResult = If( json?.PropertyT("searchResults"), out var __jsonSearchResults) ? If( __jsonSearchResults as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonArray, out var __v) ? new global::System.Func>(()=> global::System.Linq.Enumerable.ToList(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult) (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SearchResult.FromJson(__u) )) ))() : null : _searchResult;} AfterFromJson(json); } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/SelfHelp.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/SelfHelp.cs index 98fa30098beb..000ec7604fa2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/SelfHelp.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/api/SelfHelp.cs @@ -25,10 +25,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task CheckNameAvailabilityPost(string scope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task CheckNameAvailabilityPost(string scope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -52,11 +53,11 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.CheckNameAvailabilityPost_Call(request,onOk,onDefault,eventListener,sender); + await this.CheckNameAvailabilityPost_Call (request, onOk,onDefault,eventListener,sender); } } @@ -70,10 +71,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task CheckNameAvailabilityPostViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task CheckNameAvailabilityPostViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -81,10 +83,10 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/checkNameAvailability$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/checkNameAvailability'"); + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help'"); } // replace URI parameters with values from identity @@ -107,15 +109,266 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.CheckNameAvailabilityPost_Call(request,onOk,onDefault,eventListener,sender); + await this.CheckNameAvailabilityPost_Call (request, onOk,onDefault,eventListener,sender); } } - /// Actual wire call for method. + /// + /// This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions + /// + /// + /// The required parameters for availability check. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task CheckNameAvailabilityPostViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/checkNameAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.CheckNameAvailabilityPostWithResult_Call (request, eventListener,sender); + } + } + + /// + /// This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Json string supplied to the CheckNameAvailabilityPost operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task CheckNameAvailabilityPostViaJsonString(string scope, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/checkNameAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.CheckNameAvailabilityPost_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Json string supplied to the CheckNameAvailabilityPost operation + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task CheckNameAvailabilityPostViaJsonStringWithResult(string scope, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/checkNameAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.CheckNameAvailabilityPostWithResult_Call (request, eventListener,sender); + } + } + + /// + /// This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// The required parameters for availability check. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task CheckNameAvailabilityPostWithResult(string scope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/checkNameAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.CheckNameAvailabilityPostWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Actual wire call for method. + /// + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task CheckNameAvailabilityPostWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -125,7 +378,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task CheckNameAvailabilityPost_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task CheckNameAvailabilityPost_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -136,6 +389,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -143,13 +397,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.CheckNameAvailabilityResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -175,7 +429,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task CheckNameAvailabilityPost_Validate(string scope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task CheckNameAvailabilityPost_Validate(string scope, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -186,7 +440,7 @@ public partial class SelfHelp } /// - /// Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// update a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed /// via ‘additionalParameters’ as an input to Diagnostics API. @@ -200,10 +454,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiagnosticsCreate(string scope, string diagnosticsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiagnosticsCreate(string scope, string diagnosticsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -228,16 +483,16 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiagnosticsCreate_Call(request,onOk,onDefault,eventListener,sender); + await this.DiagnosticsCreate_Call (request, onOk,onDefault,eventListener,sender); } } /// - /// Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// update a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed /// via ‘additionalParameters’ as an input to Diagnostics API. @@ -249,10 +504,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiagnosticsCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiagnosticsCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -288,113 +544,470 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiagnosticsCreate_Call(request,onOk,onDefault,eventListener,sender); + await this.DiagnosticsCreate_Call (request, onOk,onDefault,eventListener,sender); } } - /// Actual wire call for method. - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// + /// update a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// + /// The required request body for this insightResource invocation. /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiagnosticsCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiagnosticsCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - global::System.Net.Http.HttpResponseMessage _response = null; - try - { - var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } - _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - // this operation supports x-ms-long-running-operation - var _originalUri = request.RequestUri.AbsoluteUri; - // declared final-state-via: azure-async-operation - var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - var location = _response.GetFirstHeader(@"Location"); - while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) - { + // verify that Identity format is an exact match for uri - // get the delay before polling. (default to 30 seconds if not present) - int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/diagnostics/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}'"); + } - // start the delay timer (we'll await later...) - var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var diagnosticsResourceName = _match.Groups["diagnosticsResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/diagnostics/" + + diagnosticsResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - // while we wait, let's grab the headers and get ready to poll. - if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { - asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - } - if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { - location = _response.GetFirstHeader(@"Location"); - } - var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; - request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // and let's look at the current response body and see if we have some information we can give back to the listener - var content = await _response.Content.ReadAsStringAsync(); - await waiting; + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // check for cancellation - if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiagnosticsCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Unique resource name for insight resources + /// Json string supplied to the DiagnosticsCreate operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiagnosticsCreateViaJsonString(string scope, string diagnosticsResourceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/diagnostics/" + + global::System.Uri.EscapeDataString(diagnosticsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DiagnosticsCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// update a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Unique resource name for insight resources + /// Json string supplied to the DiagnosticsCreate operation + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiagnosticsCreateViaJsonStringWithResult(string scope, string diagnosticsResourceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/diagnostics/" + + global::System.Uri.EscapeDataString(diagnosticsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiagnosticsCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Unique resource name for insight resources + /// The required request body for this insightResource invocation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiagnosticsCreateWithResult(string scope, string diagnosticsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/diagnostics/" + + global::System.Uri.EscapeDataString(diagnosticsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiagnosticsCreateWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DiagnosticsCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); // drop the old response _response?.Dispose(); // make the polling call _response = await sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - - // if we got back an OK, take a peek inside and see if it's done - if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) - { - var error = false; - try { - if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) - { - var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); - if( state is null ) - { - // the body doesn't contain any information that has the state of the LRO - // we're going to just get out, and let the consumer have the result - break; - } - - switch( state?.ToString()?.ToLower() ) - { - case "failed": - error = true; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. break; - case "succeeded": - case "canceled": - // we're done polling. - break; - - default: - // need to keep polling! - _response.StatusCode = global::System.Net.HttpStatusCode.Created; - continue; - } - } - } catch { - // if we run into a problem peeking into the result, - // we really don't want to do anything special. + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; } - if (error) { - throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + else + { + throw new global::System.Exception($"[{code}] : {message}"); } } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DiagnosticsCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } // check for terminal status code if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) @@ -413,6 +1026,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } break; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -420,13 +1034,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -453,7 +1067,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiagnosticsCreate_Validate(string scope, string diagnosticsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DiagnosticsCreate_Validate(string scope, string diagnosticsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -461,7 +1075,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(diagnosticsResourceName),diagnosticsResourceName); await eventListener.AssertMinimumLength(nameof(diagnosticsResourceName),diagnosticsResourceName,1); await eventListener.AssertMaximumLength(nameof(diagnosticsResourceName),diagnosticsResourceName,100); - await eventListener.AssertRegEx(nameof(diagnosticsResourceName),diagnosticsResourceName,@"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertRegEx(nameof(diagnosticsResourceName), diagnosticsResourceName, @"^[A-Za-z0-9-+@()_]+$"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } @@ -481,7 +1095,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiagnosticsGet(string scope, string diagnosticsResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiagnosticsGet(string scope, string diagnosticsResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -506,7 +1120,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiagnosticsGet_Call(request,onOk,onDefault,eventListener,sender); + await this.DiagnosticsGet_Call (request, onOk,onDefault,eventListener,sender); } } @@ -522,7 +1136,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiagnosticsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiagnosticsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -558,21 +1172,172 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiagnosticsGet_Call(request,onOk,onDefault,eventListener,sender); + await this.DiagnosticsGet_Call (request, onOk,onDefault,eventListener,sender); } } - /// Actual wire call for method. - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). - /// an instance that will receive events. - /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. - /// + /// + /// Get the diagnostics using the 'diagnosticsResourceName' you chose while creating the diagnostic. + /// + /// + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiagnosticsGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/diagnostics/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var diagnosticsResourceName = _match.Groups["diagnosticsResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/diagnostics/" + + diagnosticsResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiagnosticsGetWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Get the diagnostics using the 'diagnosticsResourceName' you chose while creating the diagnostic. + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Unique resource name for insight resources + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiagnosticsGetWithResult(string scope, string diagnosticsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/diagnostics/" + + global::System.Uri.EscapeDataString(diagnosticsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiagnosticsGetWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DiagnosticsGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiagnosticsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DiagnosticsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -583,6 +1348,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -590,13 +1356,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -630,7 +1396,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(diagnosticsResourceName),diagnosticsResourceName); await eventListener.AssertMinimumLength(nameof(diagnosticsResourceName),diagnosticsResourceName,1); await eventListener.AssertMaximumLength(nameof(diagnosticsResourceName),diagnosticsResourceName,100); - await eventListener.AssertRegEx(nameof(diagnosticsResourceName),diagnosticsResourceName,@"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertRegEx(nameof(diagnosticsResourceName), diagnosticsResourceName, @"^[A-Za-z0-9-+@()_]+$"); } } @@ -654,7 +1420,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiscoverySolutionList(string Filter, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionList(string Filter, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -680,7 +1446,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiscoverySolutionList_Call(request,onOk,onDefault,eventListener,sender); + await this.DiscoverySolutionList_Call (request, onOk,onDefault,eventListener,sender); } } @@ -705,7 +1471,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiscoverySolutionListViaIdentity(global::System.String viaIdentity, string Filter, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionListViaIdentity(global::System.String viaIdentity, string Filter, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -740,11 +1506,177 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiscoverySolutionList_Call(request,onOk,onDefault,eventListener,sender); + await this.DiscoverySolutionList_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// Lists the relevant Azure diagnostics and solutions using [problemClassification API](https://learn.microsoft.com/rest/api/support/problem-classifications/list?tabs=HTTP)) + /// AND resourceUri or resourceType.
Discovery Solutions is the initial entry point within Help API, which identifies + /// relevant Azure diagnostics and solutions.

Required Input : problemClassificationId (Use the [problemClassification + /// API](https://learn.microsoft.com/rest/api/support/problem-classifications/list?tabs=HTTP))
Optional input: resourceUri + /// OR resource Type

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ + /// as an input to Diagnostics and Solutions API. + ///
+ /// + /// 'ProblemClassificationId' is a mandatory filter to get solutions ids. It also supports optional 'ResourceType' + /// and 'SolutionType' filters. The [$filter](https://learn.microsoft.com/en-us/odata/webapi/first-odata-api#filter) supports + /// only 'and', 'or' and 'eq' operators. Example: $filter=ProblemClassificationId eq '1ddda5b4-cf6c-4d4f-91ad-bc38ab0e811e' + /// Skiptoken is only used if a previous operation returned a partial result. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiscoverySolutionListViaIdentityWithResult(global::System.String viaIdentity, string Filter, string Skiptoken, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/discoverySolutions$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/discoverySolutions'"); + } + + // replace URI parameters with values from identity + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/discoverySolutions" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + + "&" + + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + (Filter)) + + "&" + + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken)) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiscoverySolutionListWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Lists the relevant Azure diagnostics and solutions using [problemClassification API](https://learn.microsoft.com/rest/api/support/problem-classifications/list?tabs=HTTP)) + /// AND resourceUri or resourceType.
Discovery Solutions is the initial entry point within Help API, which identifies + /// relevant Azure diagnostics and solutions.

Required Input : problemClassificationId (Use the [problemClassification + /// API](https://learn.microsoft.com/rest/api/support/problem-classifications/list?tabs=HTTP))
Optional input: resourceUri + /// OR resource Type

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ + /// as an input to Diagnostics and Solutions API. + ///
+ /// 'ProblemClassificationId' is a mandatory filter to get solutions ids. It also supports optional 'ResourceType' + /// and 'SolutionType' filters. The [$filter](https://learn.microsoft.com/en-us/odata/webapi/first-odata-api#filter) supports + /// only 'and', 'or' and 'eq' operators. Example: $filter=ProblemClassificationId eq '1ddda5b4-cf6c-4d4f-91ad-bc38ab0e811e' + /// Skiptoken is only used if a previous operation returned a partial result. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DiscoverySolutionListWithResult(string Filter, string Skiptoken, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/discoverySolutions" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + + "&" + + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + (Filter)) + + "&" + + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken)) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiscoverySolutionListWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DiscoverySolutionListWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -754,7 +1686,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiscoverySolutionList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DiscoverySolutionList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -765,6 +1697,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -772,13 +1705,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -822,10 +1755,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePost(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePost(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -849,11 +1783,11 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiscoverySolutionNlpSubscriptionScopePost_Call(request,onOk,onDefault,eventListener,sender); + await this.DiscoverySolutionNlpSubscriptionScopePost_Call (request, onOk,onDefault,eventListener,sender); } } @@ -865,10 +1799,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -876,10 +1811,10 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.Help/discoverSolutions$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.Help$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions'"); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.Help'"); } // replace URI parameters with values from identity @@ -902,97 +1837,119 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DiscoverySolutionNlpSubscriptionScopePost_Call(request,onOk,onDefault,eventListener,sender); + await this.DiscoverySolutionNlpSubscriptionScopePost_Call (request, onOk,onDefault,eventListener,sender); } } - /// - /// Actual wire call for method. - /// - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// Solution discovery using natural language processing. + /// + /// Request body for discovering solutions using NLP. /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePost_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - global::System.Net.Http.HttpResponseMessage _response = null; - try - { - var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } - _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - var _contentType = _response.Content.Headers.ContentType?.MediaType; + // verify that Identity format is an exact match for uri - switch ( _response.StatusCode ) - { - case global::System.Net.HttpStatusCode.OK: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - default: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - } - } - finally + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.Help$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) { - // finally statements - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); - _response?.Dispose(); - request?.Dispose(); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.Help'"); } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/providers/Microsoft.Help/discoverSolutions" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiscoverySolutionNlpSubscriptionScopePostWithResult_Call (request, eventListener,sender); } } - /// - /// Validation method for method. Call this like the actual call, - /// but you will get validation events back. - /// + /// Solution discovery using natural language processing. /// The ID of the target subscription. The value must be an UUID. - /// Request body for discovering solutions using NLP. + /// Json string supplied to the DiscoverySolutionNlpSubscriptionScopePost operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePost_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostViaJsonString(string subscriptionId, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); - await eventListener.AssertRegEx(nameof(subscriptionId),subscriptionId,@"^[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}$"); - await eventListener.AssertNotNull(nameof(body), body); - await eventListener.AssertObjectIsValid(nameof(body), body); + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.Help/discoverSolutions" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DiscoverySolutionNlpSubscriptionScopePost_Call (request, onOk,onDefault,eventListener,sender); } } /// Solution discovery using natural language processing. - /// Request body for discovering solutions using NLP. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// The ID of the target subscription. The value must be an UUID. + /// Json string supplied to the DiscoverySolutionNlpSubscriptionScopePost operation /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePost(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostViaJsonStringWithResult(string subscriptionId, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1000,79 +1957,137 @@ public partial class SelfHelp { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.Help/discoverSolutions" + "/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.Help/discoverSolutions" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } // make the call - await this.DiscoverySolutionNlpTenantScopePost_Call(request,onOk,onDefault,eventListener,sender); + return await this.DiscoverySolutionNlpSubscriptionScopePostWithResult_Call (request, eventListener,sender); } } /// Solution discovery using natural language processing. - /// + /// The ID of the target subscription. The value must be an UUID. /// Request body for discovering solutions using NLP. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostWithResult(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { - // verify that Identity format is an exact match for uri - - var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/discoverSolutions$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); - if (!_match.Success) - { - throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/discoverSolutions'"); - } - - // replace URI parameters with values from identity // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.Help/discoverSolutions" + "/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.Help/discoverSolutions" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } // make the call - await this.DiscoverySolutionNlpTenantScopePost_Call(request,onOk,onDefault,eventListener,sender); + return await this.DiscoverySolutionNlpSubscriptionScopePostWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Actual wire call for method. + /// + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePostWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// + /// Actual wire call for method. + /// /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -1082,7 +2097,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePost_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePost_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1093,6 +2108,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -1100,13 +2116,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1122,33 +2138,38 @@ public partial class SelfHelp } /// - /// Validation method for method. Call this like the actual call, but you - /// will get validation events back. + /// Validation method for method. Call this like the actual call, + /// but you will get validation events back. /// + /// The ID of the target subscription. The value must be an UUID. /// Request body for discovering solutions using NLP. /// an instance that will receive events. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePost_Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpSubscriptionScopePost_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertRegEx(nameof(subscriptionId),subscriptionId,@"^[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}$"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } } - /// Returns list of operations. + /// Solution discovery using natural language processing. + /// Request body for discovering solutions using NLP. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePost(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1156,7 +2177,7 @@ public partial class SelfHelp { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.Help/operations" + "/providers/Microsoft.Help/discoverSolutions" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1165,26 +2186,32 @@ public partial class SelfHelp // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender); + await this.DiscoverySolutionNlpTenantScopePost_Call (request, onOk,onDefault,eventListener,sender); } } - /// Returns list of operations. + /// Solution discovery using natural language processing. /// + /// Request body for discovering solutions using NLP. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1192,16 +2219,16 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/operations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/operations'"); + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help'"); } // replace URI parameters with values from identity // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.Help/operations" + "/providers/Microsoft.Help/discoverSolutions" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1210,99 +2237,117 @@ public partial class SelfHelp // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender); + await this.DiscoverySolutionNlpTenantScopePost_Call (request, onOk,onDefault,eventListener,sender); } } - /// Actual wire call for method. - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// Solution discovery using natural language processing. + /// + /// Request body for discovering solutions using NLP. /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - global::System.Net.Http.HttpResponseMessage _response = null; - try - { - var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } - _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - var _contentType = _response.Content.Headers.ContentType?.MediaType; + // verify that Identity format is an exact match for uri - switch ( _response.StatusCode ) - { - case global::System.Net.HttpStatusCode.OK: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - default: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - } - } - finally + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) { - // finally statements - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); - _response?.Dispose(); - request?.Dispose(); + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help'"); } + + // replace URI parameters with values from identity + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/discoverSolutions" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.DiscoverySolutionNlpTenantScopePostWithResult_Call (request, eventListener,sender); } } - /// - /// Validation method for method. Call this like the actual call, but you will get validation - /// events back. - /// + /// Solution discovery using natural language processing. + /// Json string supplied to the DiscoverySolutionNlpTenantScopePost operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task OperationsList_Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostViaJsonString(global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/discoverSolutions" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DiscoverySolutionNlpTenantScopePost_Call (request, onOk,onDefault,eventListener,sender); } } - /// - /// Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ - /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might - /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions - /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
- ///
- /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - /// - /// Simplified Solutions Resource Name. - /// The required request body for simplified Solutions resource creation. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// Solution discovery using natural language processing. + /// Json string supplied to the DiscoverySolutionNlpTenantScopePost operation /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreate(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostViaJsonStringWithResult(global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1310,102 +2355,78 @@ public partial class SelfHelp { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + (scope) - + "/providers/Microsoft.Help/simplifiedSolutions/" - + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + "/providers/Microsoft.Help/discoverSolutions" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } // make the call - await this.SimplifiedSolutionsCreate_Call(request,onOk,onDefault,eventListener,sender); + return await this.DiscoverySolutionNlpTenantScopePostWithResult_Call (request, eventListener,sender); } } - /// - /// Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ - /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might - /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions - /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
- ///
- /// - /// The required request body for simplified Solutions resource creation. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// Solution discovery using natural language processing. + /// Request body for discovering solutions using NLP. /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostWithResult(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { - // verify that Identity format is an exact match for uri - - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/simplifiedSolutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); - if (!_match.Success) - { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}'"); - } - - // replace URI parameters with values from identity - var scope = _match.Groups["scope"].Value; - var simplifiedSolutionsResourceName = _match.Groups["simplifiedSolutionsResourceName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + scope - + "/providers/Microsoft.Help/simplifiedSolutions/" - + simplifiedSolutionsResourceName + "/providers/Microsoft.Help/discoverSolutions" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } // make the call - await this.SimplifiedSolutionsCreate_Call(request,onOk,onDefault,eventListener,sender); + return await this.DiscoverySolutionNlpTenantScopePostWithResult_Call (request, eventListener,sender); } } - /// Actual wire call for method. + /// + /// Actual wire call for method. + /// /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SimplifiedSolutionsCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePostWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1413,105 +2434,74 @@ public partial class SelfHelp try { var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - // this operation supports x-ms-long-running-operation - var _originalUri = request.RequestUri.AbsoluteUri; - // declared final-state-via: azure-async-operation - var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - var location = _response.GetFirstHeader(@"Location"); - while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) - { - - // get the delay before polling. (default to 30 seconds if not present) - int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } - - // start the delay timer (we'll await later...) - var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; - // while we wait, let's grab the headers and get ready to poll. - if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { - asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - } - if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { - location = _response.GetFirstHeader(@"Location"); + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; } - var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; - request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); - - // and let's look at the current response body and see if we have some information we can give back to the listener - var content = await _response.Content.ReadAsStringAsync(); - await waiting; - - // check for cancellation - if( eventListener.Token.IsCancellationRequested ) { return; } - - // drop the old response - _response?.Dispose(); - - // make the polling call - _response = await sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - - // if we got back an OK, take a peek inside and see if it's done - if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) - { - var error = false; - try { - if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) - { - var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); - if( state is null ) - { - // the body doesn't contain any information that has the state of the LRO - // we're going to just get out, and let the consumer have the result - break; - } - - switch( state?.ToString()?.ToLower() ) - { - case "failed": - error = true; - break; - case "succeeded": - case "canceled": - // we're done polling. - break; - - default: - // need to keep polling! - _response.StatusCode = global::System.Net.HttpStatusCode.Created; - continue; - } - } - } catch { - // if we run into a problem peeking into the result, - // we really don't want to do anything special. + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; } - if (error) { - throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + else + { + throw new global::System.Exception($"[{code}] : {message}"); } } - - // check for terminal status code - if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) - { - continue; - } - // we are done polling, do a request on final target? - // create a new request with the final uri - request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); - - // drop the old response - _response?.Dispose(); - - // make the final call - _response = await sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - break; } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Actual wire call for method. + /// + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePost_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -1519,13 +2509,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1541,37 +2531,24 @@ public partial class SelfHelp } /// - /// Validation method for method. Call this like the actual call, but you will get - /// validation events back. + /// Validation method for method. Call this like the actual call, but you + /// will get validation events back. /// - /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - /// - /// Simplified Solutions Resource Name. - /// The required request body for simplified Solutions resource creation. + /// Request body for discovering solutions using NLP. /// an instance that will receive events. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SimplifiedSolutionsCreate_Validate(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DiscoverySolutionNlpTenantScopePost_Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { - await eventListener.AssertNotNull(nameof(scope),scope); - await eventListener.AssertNotNull(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName); - await eventListener.AssertMinimumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,1); - await eventListener.AssertMaximumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,100); - await eventListener.AssertRegEx(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,@"^[A-Za-z0-9-+@()_]+$"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } } - /// - /// Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. - /// - /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - /// - /// Simplified Solutions Resource Name. + /// Returns list of operations. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). @@ -1580,7 +2557,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SimplifiedSolutionsGet(string scope, string simplifiedSolutionsResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1588,10 +2565,7 @@ public partial class SelfHelp { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + (scope) - + "/providers/Microsoft.Help/simplifiedSolutions/" - + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + "/providers/Microsoft.Help/operations" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1605,13 +2579,11 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SimplifiedSolutionsGet_Call(request,onOk,onDefault,eventListener,sender); + await this.OperationsList_Call (request, onOk,onDefault,eventListener,sender); } } - /// - /// Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. - /// + /// Returns list of operations. /// /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -1621,7 +2593,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SimplifiedSolutionsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1629,21 +2601,16 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/simplifiedSolutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/operations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}'"); + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/operations'"); } // replace URI parameters with values from identity - var scope = _match.Groups["scope"].Value; - var simplifiedSolutionsResourceName = _match.Groups["simplifiedSolutionsResourceName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + scope - + "/providers/Microsoft.Help/simplifiedSolutions/" - + simplifiedSolutionsResourceName + "/providers/Microsoft.Help/operations" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1657,52 +2624,1832 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SimplifiedSolutionsGet_Call(request,onOk,onDefault,eventListener,sender); + await this.OperationsList_Call (request, onOk,onDefault,eventListener,sender); } } - /// Actual wire call for method. - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// Returns list of operations. + /// /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SimplifiedSolutionsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task OperationsListViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - global::System.Net.Http.HttpResponseMessage _response = null; - try - { - var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } - _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - var _contentType = _response.Content.Headers.ContentType?.MediaType; + // verify that Identity format is an exact match for uri - switch ( _response.StatusCode ) - { - case global::System.Net.HttpStatusCode.OK: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - default: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - } - } - finally + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/operations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) { - // finally statements + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/operations'"); + } + + // replace URI parameters with values from identity + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/operations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.OperationsListWithResult_Call (request, eventListener,sender); + } + } + + /// Returns list of operations. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task OperationsListWithResult(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/operations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.OperationsListWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsListWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsList_Validate(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + + } + } + + /// + /// update a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// The required request body for simplified Solutions resource creation. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreate(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/simplifiedSolutions/" + + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SimplifiedSolutionsCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// update a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// + /// The required request body for simplified Solutions resource creation. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/simplifiedSolutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var simplifiedSolutionsResourceName = _match.Groups["simplifiedSolutionsResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/simplifiedSolutions/" + + simplifiedSolutionsResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SimplifiedSolutionsCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// update a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// + /// The required request body for simplified Solutions resource creation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/simplifiedSolutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var simplifiedSolutionsResourceName = _match.Groups["simplifiedSolutionsResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/simplifiedSolutions/" + + simplifiedSolutionsResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SimplifiedSolutionsCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// Json string supplied to the SimplifiedSolutionsCreate operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateViaJsonString(string scope, string simplifiedSolutionsResourceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/simplifiedSolutions/" + + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SimplifiedSolutionsCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// update a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// Json string supplied to the SimplifiedSolutionsCreate operation + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateViaJsonStringWithResult(string scope, string simplifiedSolutionsResourceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/simplifiedSolutions/" + + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SimplifiedSolutionsCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// The required request body for simplified Solutions resource creation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateWithResult(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/simplifiedSolutions/" + + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SimplifiedSolutionsCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Actual wire call for method. + /// + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SimplifiedSolutionsCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SimplifiedSolutionsCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get + /// validation events back. + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// The required request body for simplified Solutions resource creation. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SimplifiedSolutionsCreate_Validate(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(scope),scope); + await eventListener.AssertNotNull(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName); + await eventListener.AssertMinimumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,1); + await eventListener.AssertMaximumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,100); + await eventListener.AssertRegEx(nameof(simplifiedSolutionsResourceName), simplifiedSolutionsResourceName, @"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// + /// Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsGet(string scope, string simplifiedSolutionsResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/simplifiedSolutions/" + + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SimplifiedSolutionsGet_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. + /// + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/simplifiedSolutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var simplifiedSolutionsResourceName = _match.Groups["simplifiedSolutionsResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/simplifiedSolutions/" + + simplifiedSolutionsResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SimplifiedSolutionsGet_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. + /// + /// + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/simplifiedSolutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var simplifiedSolutionsResourceName = _match.Groups["simplifiedSolutionsResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/simplifiedSolutions/" + + simplifiedSolutionsResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SimplifiedSolutionsGetWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions. + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SimplifiedSolutionsGetWithResult(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/simplifiedSolutions/" + + global::System.Uri.EscapeDataString(simplifiedSolutionsResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SimplifiedSolutionsGetWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SimplifiedSolutionsGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SimplifiedSolutionsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Simplified Solutions Resource Name. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SimplifiedSolutionsGet_Validate(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(scope),scope); + await eventListener.AssertNotNull(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName); + await eventListener.AssertMinimumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,1); + await eventListener.AssertMaximumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,100); + await eventListener.AssertRegEx(nameof(simplifiedSolutionsResourceName), simplifiedSolutionsResourceName, @"^[A-Za-z0-9-+@()_]+$"); + } + } + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// The required request body for this solution resource creation. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionCreate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SolutionCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// + /// The required request body for this solution resource creation. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var solutionResourceName = _match.Groups["solutionResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/solutions/" + + solutionResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SolutionCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// + /// The required request body for this solution resource creation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var solutionResourceName = _match.Groups["solutionResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/solutions/" + + solutionResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// Json string supplied to the SolutionCreate operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionCreateViaJsonString(string scope, string solutionResourceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SolutionCreate_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// Json string supplied to the SolutionCreate operation + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionCreateViaJsonStringWithResult(string scope, string solutionResourceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// The required request body for this solution resource creation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionCreateWithResult(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionCreateWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SolutionCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers)); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SolutionCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); _response?.Dispose(); request?.Dispose(); @@ -1711,46 +4458,37 @@ public partial class SelfHelp } /// - /// Validation method for method. Call this like the actual call, but you will get validation + /// Validation method for method. Call this like the actual call, but you will get validation /// events back. /// /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read /// - /// Simplified Solutions Resource Name. + /// Solution resource Name. + /// The required request body for this solution resource creation. /// an instance that will receive events. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SimplifiedSolutionsGet_Validate(string scope, string simplifiedSolutionsResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task SolutionCreate_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(scope),scope); - await eventListener.AssertNotNull(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName); - await eventListener.AssertMinimumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,1); - await eventListener.AssertMaximumLength(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,100); - await eventListener.AssertRegEx(nameof(simplifiedSolutionsResourceName),simplifiedSolutionsResourceName,@"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertNotNull(nameof(solutionResourceName),solutionResourceName); + await eventListener.AssertMinimumLength(nameof(solutionResourceName),solutionResourceName,1); + await eventListener.AssertMaximumLength(nameof(solutionResourceName),solutionResourceName,100); + await eventListener.AssertRegEx(nameof(solutionResourceName), solutionResourceName, @"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); } } /// - /// Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from - /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully - /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) - /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional - /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. - /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. - /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. - /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might - /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed - /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the - /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response - /// is the same as ‘properties.parameters’ in the request for Troubleshooters + /// Get the solution using the applicable solutionResourceName while creating the solution. ///
/// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read /// /// Solution resource Name. - /// The required request body for this solution resource creation. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). @@ -1759,7 +4497,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionCreate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionGet(string scope, string solutionResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1779,35 +4517,19 @@ public partial class SelfHelp // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } - // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); - request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionCreate_Call(request,onOk,onDefault,eventListener,sender); + await this.SolutionGet_Call (request, onOk,onDefault,eventListener,sender); } } /// - /// Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from - /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully - /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) - /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional - /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. - /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. - /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. - /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might - /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed - /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the - /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response - /// is the same as ‘properties.parameters’ in the request for Troubleshooters + /// Get the solution using the applicable solutionResourceName while creating the solution. ///
/// - /// The required request body for this solution resource creation. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). @@ -1816,7 +4538,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -1847,136 +4569,188 @@ public partial class SelfHelp // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } - // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); - request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionCreate_Call(request,onOk,onDefault,eventListener,sender); + await this.SolutionGet_Call (request, onOk,onDefault,eventListener,sender); } } - /// Actual wire call for method. - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// + /// Get the solution using the applicable solutionResourceName while creating the solution. + /// + /// /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - global::System.Net.Http.HttpResponseMessage _response = null; - try + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) { - var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } - _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - // this operation supports x-ms-long-running-operation - var _originalUri = request.RequestUri.AbsoluteUri; - // declared final-state-via: azure-async-operation - var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - var location = _response.GetFirstHeader(@"Location"); - while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) - { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var solutionResourceName = _match.Groups["solutionResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/solutions/" + + solutionResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - // get the delay before polling. (default to 30 seconds if not present) - int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // start the delay timer (we'll await later...) - var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // while we wait, let's grab the headers and get ready to poll. - if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { - asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - } - if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { - location = _response.GetFirstHeader(@"Location"); - } - var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; - request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionGetWithResult_Call (request, eventListener,sender); + } + } - // and let's look at the current response body and see if we have some information we can give back to the listener - var content = await _response.Content.ReadAsStringAsync(); - await waiting; + /// + /// Get the solution using the applicable solutionResourceName while creating the solution. + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionGetWithResult(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - // check for cancellation - if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // drop the old response - _response?.Dispose(); + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // make the polling call - _response = await sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionGetWithResult_Call (request, eventListener,sender); + } + } - // if we got back an OK, take a peek inside and see if it's done - if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) - { - var error = false; - try { - if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) - { - var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); - if( state is null ) - { - // the body doesn't contain any information that has the state of the LRO - // we're going to just get out, and let the consumer have the result - break; - } - - switch( state?.ToString()?.ToLower() ) - { - case "failed": - error = true; - break; - case "succeeded": - case "canceled": - // we're done polling. - break; - - default: - // need to keep polling! - _response.StatusCode = global::System.Net.HttpStatusCode.Created; - continue; - } - } - } catch { - // if we run into a problem peeking into the result, - // we really don't want to do anything special. - } - if (error) { - throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); - } - } + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SolutionGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; - // check for terminal status code - if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: { - continue; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers)); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } } - // we are done polling, do a request on final target? - // create a new request with the final uri - request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); - - // drop the old response - _response?.Dispose(); - - // make the final call - _response = await sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - break; } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SolutionGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -1984,13 +4758,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2006,18 +4780,17 @@ public partial class SelfHelp } /// - /// Validation method for method. Call this like the actual call, but you will get validation - /// events back. + /// Validation method for method. Call this like the actual call, but you will get validation events + /// back. /// /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read /// /// Solution resource Name. - /// The required request body for this solution resource creation. /// an instance that will receive events. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionCreate_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task SolutionGet_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2025,18 +4798,16 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(solutionResourceName),solutionResourceName); await eventListener.AssertMinimumLength(nameof(solutionResourceName),solutionResourceName,1); await eventListener.AssertMaximumLength(nameof(solutionResourceName),solutionResourceName,100); - await eventListener.AssertRegEx(nameof(solutionResourceName),solutionResourceName,@"^[A-Za-z0-9-+@()_]+$"); - await eventListener.AssertNotNull(nameof(body), body); - await eventListener.AssertObjectIsValid(nameof(body), body); + await eventListener.AssertRegEx(nameof(solutionResourceName), solutionResourceName, @"^[A-Za-z0-9-+@()_]+$"); } } /// - /// Get the solution using the applicable solutionResourceName while creating the solution. + /// Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot + /// their issues. /// - /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - /// - /// Solution resource Name. + /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the + /// Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). @@ -2045,7 +4816,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionGet(string scope, string solutionResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionSelfHelpGet(string solutionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2053,10 +4824,8 @@ public partial class SelfHelp { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + (scope) - + "/providers/Microsoft.Help/solutions/" - + global::System.Uri.EscapeDataString(solutionResourceName) + "/providers/Microsoft.Help/selfHelp/" + + global::System.Uri.EscapeDataString(solutionId) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -2070,12 +4839,13 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionGet_Call(request,onOk,onDefault,eventListener,sender); + await this.SolutionSelfHelpGet_Call (request, onOk,onDefault,eventListener,sender); } } /// - /// Get the solution using the applicable solutionResourceName while creating the solution. + /// Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot + /// their issues. /// /// /// a delegate that is called when the remote service returns 200 (OK). @@ -2086,7 +4856,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionSelfHelpGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2094,21 +4864,18 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/selfHelp/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/selfHelp/{solutionId}'"); } // replace URI parameters with values from identity - var scope = _match.Groups["scope"].Value; - var solutionResourceName = _match.Groups["solutionResourceName"].Value; + var solutionId = _match.Groups["solutionId"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + scope - + "/providers/Microsoft.Help/solutions/" - + solutionResourceName + "/providers/Microsoft.Help/selfHelp/" + + solutionId + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -2122,11 +4889,158 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionGet_Call(request,onOk,onDefault,eventListener,sender); + await this.SolutionSelfHelpGet_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot + /// their issues. + /// + /// + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionSelfHelpGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/selfHelp/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/selfHelp/{solutionId}'"); + } + + // replace URI parameters with values from identity + var solutionId = _match.Groups["solutionId"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/selfHelp/" + + solutionId + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionSelfHelpGetWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot + /// their issues. + /// + /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the + /// Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionSelfHelpGetWithResult(string solutionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.Help/selfHelp/" + + global::System.Uri.EscapeDataString(solutionId) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionSelfHelpGetWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SolutionSelfHelpGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceSelfHelp.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -2136,7 +5050,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task SolutionSelfHelpGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2147,6 +5061,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -2154,13 +5069,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResourceSelfHelp.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2176,43 +5091,42 @@ public partial class SelfHelp } /// - /// Validation method for method. Call this like the actual call, but you will get validation events - /// back. + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. /// - /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read - /// - /// Solution resource Name. + /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the + /// Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP /// an instance that will receive events. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionGet_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task SolutionSelfHelpGet_Validate(string solutionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { - await eventListener.AssertNotNull(nameof(scope),scope); - await eventListener.AssertNotNull(nameof(solutionResourceName),solutionResourceName); - await eventListener.AssertMinimumLength(nameof(solutionResourceName),solutionResourceName,1); - await eventListener.AssertMaximumLength(nameof(solutionResourceName),solutionResourceName,100); - await eventListener.AssertRegEx(nameof(solutionResourceName),solutionResourceName,@"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertNotNull(nameof(solutionId),solutionId); + await eventListener.AssertMinimumLength(nameof(solutionId),solutionId,1); + await eventListener.AssertMaximumLength(nameof(solutionId),solutionId,100); } } /// - /// Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot - /// their issues. + /// update the requiredInputs or additional information needed to execute the solution /// - /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the - /// Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// The required request body for updating a solution resource. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionSelfHelpGet(string solutionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionUpdate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2220,8 +5134,10 @@ public partial class SelfHelp { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.Help/selfHelp/" - + global::System.Uri.EscapeDataString(solutionId) + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -2230,29 +5146,34 @@ public partial class SelfHelp // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Patch, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionSelfHelpGet_Call(request,onOk,onDefault,eventListener,sender); + await this.SolutionUpdate_Call (request, onOk,onDefault,eventListener,sender); } } /// - /// Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot - /// their issues. + /// update the requiredInputs or additional information needed to execute the solution /// /// + /// The required request body for updating a solution resource. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionSelfHelpGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2260,18 +5181,21 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.Help/selfHelp/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.Help/selfHelp/{solutionId}'"); + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); } // replace URI parameters with values from identity - var solutionId = _match.Groups["solutionId"].Value; + var scope = _match.Groups["scope"].Value; + var solutionResourceName = _match.Groups["solutionResourceName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.Help/selfHelp/" - + solutionId + "/" + + scope + + "/providers/Microsoft.Help/solutions/" + + solutionResourceName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -2279,92 +5203,83 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } // generate request object - var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); - var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } - - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } - // make the call - await this.SolutionSelfHelpGet_Call(request,onOk,onDefault,eventListener,sender); - } - } - - /// Actual wire call for method. - /// the prepared HttpRequestMessage to send. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). - /// an instance that will receive events. - /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. - /// - /// A that will be complete when handling of the response is completed. - /// - internal async global::System.Threading.Tasks.Task SolutionSelfHelpGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) - { - using( NoSynchronizationContext ) - { - global::System.Net.Http.HttpResponseMessage _response = null; - try - { - var sendTask = sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } - _response = await sendTask; - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - var _contentType = _response.Content.Headers.ContentType?.MediaType; - - switch ( _response.StatusCode ) - { - case global::System.Net.HttpStatusCode.OK: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResourceSelfHelp.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - default: - { - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); - break; - } - } - } - finally - { - // finally statements - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); - _response?.Dispose(); - request?.Dispose(); - } + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SolutionUpdate_Call (request, onOk,onDefault,eventListener,sender); } } /// - /// Validation method for method. Call this like the actual call, but you will get validation - /// events back. + /// update the requiredInputs or additional information needed to execute the solution /// - /// SolutionId is a unique id to identify a solution. You can retrieve the solution id using the - /// Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP + /// + /// The required request body for updating a solution resource. /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionSelfHelpGet_Validate(string solutionId, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + public async global::System.Threading.Tasks.Task SolutionUpdateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters using( NoSynchronizationContext ) { - await eventListener.AssertNotNull(nameof(solutionId),solutionId); - await eventListener.AssertMinimumLength(nameof(solutionId),solutionId,1); - await eventListener.AssertMaximumLength(nameof(solutionId),solutionId,100); + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var solutionResourceName = _match.Groups["solutionResourceName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/solutions/" + + solutionResourceName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionUpdateWithResult_Call (request, eventListener,sender); } } /// - /// Update the requiredInputs or additional information needed to execute the solution + /// update the requiredInputs or additional information needed to execute the solution /// /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read /// /// Solution resource Name. - /// The required request body for updating a solution resource. + /// Json string supplied to the SolutionUpdate operation /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled /// elsewhere). @@ -2373,7 +5288,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionUpdate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionUpdateViaJsonString(string scope, string solutionResourceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2398,72 +5313,260 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionUpdate_Call(request,onOk,onDefault,eventListener,sender); + await this.SolutionUpdate_Call (request, onOk,onDefault,eventListener,sender); } } /// - /// Update the requiredInputs or additional information needed to execute the solution + /// update the requiredInputs or additional information needed to execute the solution /// - /// - /// The required request body for updating a solution resource. - /// a delegate that is called when the remote service returns 200 (OK). - /// a delegate that is called when the remote service returns default (any response code not handled - /// elsewhere). + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// Json string supplied to the SolutionUpdate operation /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. /// - /// A that will be complete when handling of the response is completed. + /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionUpdateViaJsonStringWithResult(string scope, string solutionResourceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { - // verify that Identity format is an exact match for uri + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); - if (!_match.Success) - { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); - } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - // replace URI parameters with values from identity - var scope = _match.Groups["scope"].Value; - var solutionResourceName = _match.Groups["solutionResourceName"].Value; + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.SolutionUpdateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update the requiredInputs or additional information needed to execute the solution + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// The required request body for updating a solution resource. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionUpdateWithResult(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" - + scope + + (scope) + "/providers/Microsoft.Help/solutions/" - + solutionResourceName + + global::System.Uri.EscapeDataString(solutionResourceName) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } // generate request object var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Patch, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } // make the call - await this.SolutionUpdate_Call(request,onOk,onDefault,eventListener,sender); + return await this.SolutionUpdateWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task SolutionUpdateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers)); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -2473,31 +5576,28 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task SolutionUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { global::System.Net.Http.HttpResponseMessage _response = null; try { + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; var sendTask = sender.SendAsync(request, eventListener); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 0); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - // this operation supports x-ms-long-running-operation - var _originalUri = request.RequestUri.AbsoluteUri; // declared final-state-via: azure-async-operation var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); var location = _response.GetFirstHeader(@"Location"); + var operationLocation = _response.GetFirstHeader(@"Operation-Location"); while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) { - - // get the delay before polling. (default to 30 seconds if not present) - int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } - - // start the delay timer (we'll await later...) - var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + // delay before making the next polling request + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } // while we wait, let's grab the headers and get ready to poll. if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { @@ -2506,15 +5606,14 @@ public partial class SelfHelp if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { location = _response.GetFirstHeader(@"Location"); } - var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Operation-Location"))) { + operationLocation = _response.GetFirstHeader(@"Operation-Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? global::System.String.IsNullOrEmpty(operationLocation) ? _originalUri : operationLocation : location : asyncOperation; request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get); // and let's look at the current response body and see if we have some information we can give back to the listener var content = await _response.Content.ReadAsStringAsync(); - await waiting; - - // check for cancellation - if( eventListener.Token.IsCancellationRequested ) { return; } // drop the old response _response?.Dispose(); @@ -2523,45 +5622,45 @@ public partial class SelfHelp _response = await sender.SendAsync(request, eventListener); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - // if we got back an OK, take a peek inside and see if it's done - if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) - { - var error = false; - try { - if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) - { - var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); - if( state is null ) - { - // the body doesn't contain any information that has the state of the LRO - // we're going to just get out, and let the consumer have the result - break; - } - - switch( state?.ToString()?.ToLower() ) - { - case "failed": - error = true; + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. break; - case "succeeded": - case "canceled": - // we're done polling. - break; - - default: - // need to keep polling! - _response.StatusCode = global::System.Net.HttpStatusCode.Created; - continue; - } - } - } catch { - // if we run into a problem peeking into the result, - // we really don't want to do anything special. - } - if (error) { - throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); - } - } + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException(_response); + } + } // check for terminal status code if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) @@ -2580,6 +5679,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } break; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -2587,13 +5687,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2620,7 +5720,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionUpdate_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task SolutionUpdate_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2628,7 +5728,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(solutionResourceName),solutionResourceName); await eventListener.AssertMinimumLength(nameof(solutionResourceName),solutionResourceName,1); await eventListener.AssertMaximumLength(nameof(solutionResourceName),solutionResourceName,100); - await eventListener.AssertRegEx(nameof(solutionResourceName),solutionResourceName,@"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertRegEx(nameof(solutionResourceName), solutionResourceName, @"^[A-Za-z0-9-+@()_]+$"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } @@ -2646,10 +5746,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionWarmUp(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody body, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionWarmUp(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody body, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2675,11 +5776,11 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionWarmUp_Call(request,onNoContent,onDefault,eventListener,sender); + await this.SolutionWarmUp_Call (request, onNoContent,onDefault,eventListener,sender); } } @@ -2693,10 +5794,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SolutionWarmUpViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody body, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SolutionWarmUpViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody body, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2704,10 +5806,10 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)/warmup$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/solutions/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup'"); + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}'"); } // replace URI parameters with values from identity @@ -2733,15 +5835,64 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.SolutionWarmUp_Call (request, onNoContent,onDefault,eventListener,sender); + } + } + + /// + /// Warm up the solution resource by preloading asynchronous diagnostics results into cache + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Solution resource Name. + /// Json string supplied to the SolutionWarmUp operation + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task SolutionWarmUpViaJsonString(string scope, string solutionResourceName, global::System.String jsonString, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/solutions/" + + global::System.Uri.EscapeDataString(solutionResourceName) + + "/warmup" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.SolutionWarmUp_Call(request,onNoContent,onDefault,eventListener,sender); + await this.SolutionWarmUp_Call (request, onNoContent,onDefault,eventListener,sender); } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 204 (NoContent). /// a delegate that is called when the remote service returns default (any response code not handled @@ -2751,7 +5902,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionWarmUp_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task SolutionWarmUp_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2762,6 +5913,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -2775,7 +5927,7 @@ public partial class SelfHelp default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2802,7 +5954,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SolutionWarmUp_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task SolutionWarmUp_Validate(string scope, string solutionResourceName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2810,7 +5962,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(solutionResourceName),solutionResourceName); await eventListener.AssertMinimumLength(nameof(solutionResourceName),solutionResourceName,1); await eventListener.AssertMaximumLength(nameof(solutionResourceName),solutionResourceName,100); - await eventListener.AssertRegEx(nameof(solutionResourceName),solutionResourceName,@"^[A-Za-z0-9-+@()_]+$"); + await eventListener.AssertRegEx(nameof(solutionResourceName), solutionResourceName, @"^[A-Za-z0-9-+@()_]+$"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } @@ -2819,7 +5971,7 @@ public partial class SelfHelp /// /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the - /// next step in the process. This API is used after the Troubleshooter has been created using the Create API. + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. ///
/// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read /// @@ -2830,10 +5982,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersContinue(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersContinue(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2859,18 +6012,18 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersContinue_Call(request,onNoContent,onDefault,eventListener,sender); + await this.TroubleshootersContinue_Call (request, onNoContent,onDefault,eventListener,sender); } } /// /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the - /// next step in the process. This API is used after the Troubleshooter has been created using the Create API. + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. ///
/// /// The required request body for going to next step in Troubleshooter resource. @@ -2879,10 +6032,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersContinueViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersContinueViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody body, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -2890,10 +6044,10 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)/continue$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue'"); + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}'"); } // replace URI parameters with values from identity @@ -2919,15 +6073,66 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.TroubleshootersContinue_Call (request, onNoContent,onDefault,eventListener,sender); + } + } + + /// + /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource + /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Troubleshooter resource Name. + /// Json string supplied to the TroubleshootersContinue operation + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersContinueViaJsonString(string scope, string troubleshooterName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/troubleshooters/" + + global::System.Uri.EscapeDataString(troubleshooterName) + + "/continue" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersContinue_Call(request,onNoContent,onDefault,eventListener,sender); + await this.TroubleshootersContinue_Call (request, onNoContent,onDefault,eventListener,sender); } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 204 (NoContent). /// a delegate that is called when the remote service returns default (any response code not handled @@ -2937,7 +6142,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersContinue_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TroubleshootersContinue_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2948,6 +6153,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -2955,13 +6161,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.NoContent: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onNoContent(_response,null /* deserializeFromResponse doesn't support '-header-' C:\Users\cloudtest\.autorest\@autorest_powershell@3.0.518\node_modules\@autorest\powershell\dist\llcsharp\schema\object.js*/); + await onNoContent(_response,null /* deserializeFromResponse doesn't support '-header-' C:\Users\cloudtest\.autorest\@autorest_powershell@4.0.739\node_modules\@autorest\powershell\dist\llcsharp\schema\object.js*/); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2988,7 +6194,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersContinue_Validate(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task TroubleshootersContinue_Validate(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2996,14 +6202,14 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(troubleshooterName),troubleshooterName); await eventListener.AssertMinimumLength(nameof(troubleshooterName),troubleshooterName,1); await eventListener.AssertMaximumLength(nameof(troubleshooterName),troubleshooterName,100); - await eventListener.AssertRegEx(nameof(troubleshooterName),troubleshooterName,@"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); + await eventListener.AssertRegEx(nameof(troubleshooterName), troubleshooterName, @"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } } /// - /// Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// update the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows @@ -3021,10 +6227,11 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersCreate(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersCreate(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3049,16 +6256,16 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersCreate_Call(request,onOk,onCreated,onDefault,eventListener,sender); + await this.TroubleshootersCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender); } } /// - /// Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// update the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows @@ -3074,10 +6281,73 @@ public partial class SelfHelp /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var troubleshooterName = _match.Groups["troubleshooterName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/troubleshooters/" + + troubleshooterName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.TroubleshootersCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender); + } + } + + /// + /// update the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// + /// The required request body for this Troubleshooter resource creation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3104,6 +6374,61 @@ public partial class SelfHelp + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Troubleshooter resource Name. + /// Json string supplied to the TroubleshootersCreate operation + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 201 (Created). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersCreateViaJsonString(string scope, string troubleshooterName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/troubleshooters/" + + global::System.Uri.EscapeDataString(troubleshooterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } // generate request object @@ -3113,15 +6438,186 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // set body content - request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersCreate_Call(request,onOk,onCreated,onDefault,eventListener,sender); + await this.TroubleshootersCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender); + } + } + + /// + /// update the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Troubleshooter resource Name. + /// Json string supplied to the TroubleshootersCreate operation + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersCreateViaJsonStringWithResult(string scope, string troubleshooterName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/troubleshooters/" + + global::System.Uri.EscapeDataString(troubleshooterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(jsonString, global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersCreateWithResult_Call (request, eventListener,sender); + } + } + + /// + /// update the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Troubleshooter resource Name. + /// The required request body for this Troubleshooter resource creation. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersCreateWithResult(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/troubleshooters/" + + global::System.Uri.EscapeDataString(troubleshooterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null, serializationMode).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersCreateWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task TroubleshootersCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + case global::System.Net.HttpStatusCode.Created: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns 201 (Created). @@ -3132,7 +6628,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TroubleshootersCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3143,6 +6639,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -3150,19 +6647,19 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } case global::System.Net.HttpStatusCode.Created: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3189,7 +6686,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersCreate_Validate(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task TroubleshootersCreate_Validate(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource body, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -3197,7 +6694,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(troubleshooterName),troubleshooterName); await eventListener.AssertMinimumLength(nameof(troubleshooterName),troubleshooterName,1); await eventListener.AssertMaximumLength(nameof(troubleshooterName),troubleshooterName,100); - await eventListener.AssertRegEx(nameof(troubleshooterName),troubleshooterName,@"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); + await eventListener.AssertRegEx(nameof(troubleshooterName), troubleshooterName, @"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); await eventListener.AssertNotNull(nameof(body), body); await eventListener.AssertObjectIsValid(nameof(body), body); } @@ -3215,7 +6712,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersEnd(string scope, string troubleshooterName, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersEnd(string scope, string troubleshooterName, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3241,7 +6738,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersEnd_Call(request,onNoContent,onDefault,eventListener,sender); + await this.TroubleshootersEnd_Call (request, onNoContent,onDefault,eventListener,sender); } } @@ -3255,7 +6752,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersEndViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersEndViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3263,10 +6760,10 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)/end$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/end'"); + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}'"); } // replace URI parameters with values from identity @@ -3292,11 +6789,11 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersEnd_Call(request,onNoContent,onDefault,eventListener,sender); + await this.TroubleshootersEnd_Call (request, onNoContent,onDefault,eventListener,sender); } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 204 (NoContent). /// a delegate that is called when the remote service returns default (any response code not handled @@ -3306,7 +6803,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersEnd_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TroubleshootersEnd_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3317,6 +6814,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -3324,13 +6822,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.NoContent: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onNoContent(_response,null /* deserializeFromResponse doesn't support '-header-' C:\Users\cloudtest\.autorest\@autorest_powershell@3.0.518\node_modules\@autorest\powershell\dist\llcsharp\schema\object.js*/); + await onNoContent(_response,null /* deserializeFromResponse doesn't support '-header-' C:\Users\cloudtest\.autorest\@autorest_powershell@4.0.739\node_modules\@autorest\powershell\dist\llcsharp\schema\object.js*/); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3364,7 +6862,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(troubleshooterName),troubleshooterName); await eventListener.AssertMinimumLength(nameof(troubleshooterName),troubleshooterName,1); await eventListener.AssertMaximumLength(nameof(troubleshooterName),troubleshooterName,100); - await eventListener.AssertRegEx(nameof(troubleshooterName),troubleshooterName,@"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); + await eventListener.AssertRegEx(nameof(troubleshooterName), troubleshooterName, @"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); } } @@ -3372,7 +6870,7 @@ public partial class SelfHelp /// Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is /// being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and /// result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created - /// using the Create API. + /// using the get API. ///
/// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read /// @@ -3385,7 +6883,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersGet(string scope, string troubleshooterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersGet(string scope, string troubleshooterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3410,7 +6908,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersGet_Call(request,onOk,onDefault,eventListener,sender); + await this.TroubleshootersGet_Call (request, onOk,onDefault,eventListener,sender); } } @@ -3418,7 +6916,7 @@ public partial class SelfHelp /// Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is /// being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and /// result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created - /// using the Create API. + /// using the get API. ///
/// /// a delegate that is called when the remote service returns 200 (OK). @@ -3429,7 +6927,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3465,11 +6963,168 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersGet_Call(request,onOk,onDefault,eventListener,sender); + await this.TroubleshootersGet_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is + /// being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and + /// result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created + /// using the get API. + ///
+ /// + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var troubleshooterName = _match.Groups["troubleshooterName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/troubleshooters/" + + troubleshooterName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersGetWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is + /// being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and + /// result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created + /// using the get API. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Troubleshooter resource Name. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersGetWithResult(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/troubleshooters/" + + global::System.Uri.EscapeDataString(troubleshooterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersGetWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task TroubleshootersGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -3479,7 +7134,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TroubleshootersGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3490,6 +7145,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -3497,13 +7153,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3537,7 +7193,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(troubleshooterName),troubleshooterName); await eventListener.AssertMinimumLength(nameof(troubleshooterName),troubleshooterName,1); await eventListener.AssertMaximumLength(nameof(troubleshooterName),troubleshooterName,100); - await eventListener.AssertRegEx(nameof(troubleshooterName),troubleshooterName,@"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); + await eventListener.AssertRegEx(nameof(troubleshooterName), troubleshooterName, @"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); } } @@ -3556,7 +7212,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersRestart(string scope, string troubleshooterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersRestart(string scope, string troubleshooterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3582,7 +7238,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersRestart_Call(request,onOk,onDefault,eventListener,sender); + await this.TroubleshootersRestart_Call (request, onOk,onDefault,eventListener,sender); } } @@ -3599,7 +7255,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TroubleshootersRestartViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TroubleshootersRestartViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { var apiVersion = @"2024-03-01-preview"; // Constant Parameters @@ -3607,10 +7263,10 @@ public partial class SelfHelp { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)/restart$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/restart'"); + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}'"); } // replace URI parameters with values from identity @@ -3636,11 +7292,166 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.TroubleshootersRestart_Call(request,onOk,onDefault,eventListener,sender); + await this.TroubleshootersRestart_Call (request, onOk,onDefault,eventListener,sender); + } + } + + /// + /// Restarts the troubleshooter API using applicable troubleshooter resource name as the input.
It returns new resource + /// name which should be used in subsequent request. The old resource name is obsolete after this API is invoked. + ///
+ /// + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersRestartViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.Help/troubleshooters/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}'"); + } + + // replace URI parameters with values from identity + var scope = _match.Groups["scope"].Value; + var troubleshooterName = _match.Groups["troubleshooterName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + scope + + "/providers/Microsoft.Help/troubleshooters/" + + troubleshooterName + + "/restart" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersRestartWithResult_Call (request, eventListener,sender); + } + } + + /// + /// Restarts the troubleshooter API using applicable troubleshooter resource name as the input.
It returns new resource + /// name which should be used in subsequent request. The old resource name is obsolete after this API is invoked. + ///
+ /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + /// + /// Troubleshooter resource Name. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task TroubleshootersRestartWithResult(string scope, string troubleshooterName, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + var apiVersion = @"2024-03-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (scope) + + "/providers/Microsoft.Help/troubleshooters/" + + global::System.Uri.EscapeDataString(troubleshooterName) + + "/restart" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + // generate request object + var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}"); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return null; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; } + // make the call + return await this.TroubleshootersRestartWithResult_Call (request, eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task TroubleshootersRestartWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + var sendTask = sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return null; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.RestartTroubleshooterResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers)); + return await _result; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return null; } + var _result = _response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) ); + // Error Response : default + var code = (await _result)?.Code; + var message = (await _result)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(_response, await _result); + throw ex; + } + else + { + throw new global::System.Exception($"[{code}] : {message}"); + } + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } } } - /// Actual wire call for method. + /// Actual wire call for method. /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). /// a delegate that is called when the remote service returns default (any response code not handled @@ -3650,7 +7461,7 @@ public partial class SelfHelp /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TroubleshootersRestart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TroubleshootersRestart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3661,6 +7472,7 @@ public partial class SelfHelp await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress, "intentional placeholder", 100); if( eventListener.Token.IsCancellationRequested ) { return; } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -3668,13 +7480,13 @@ public partial class SelfHelp case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.RestartTroubleshooterResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.RestartTroubleshooterResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) .ReadHeaders(_response.Headers))); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3708,7 +7520,7 @@ public partial class SelfHelp await eventListener.AssertNotNull(nameof(troubleshooterName),troubleshooterName); await eventListener.AssertMinimumLength(nameof(troubleshooterName),troubleshooterName,1); await eventListener.AssertMaximumLength(nameof(troubleshooterName),troubleshooterName,100); - await eventListener.AssertRegEx(nameof(troubleshooterName),troubleshooterName,@"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); + await eventListener.AssertRegEx(nameof(troubleshooterName), troubleshooterName, @"([A-Za-z0-9]+(-[A-Za-z0-9]+)+)"); } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.Completer.cs deleted file mode 100644 index 579c5dbdc4bd..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.Completer.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// - /// Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. - /// - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionTypeTypeConverter))] - public partial struct ActionType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Internal".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Internal'", "Internal", global::System.Management.Automation.CompletionResultType.ParameterValue, "Internal"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.TypeConverter.cs deleted file mode 100644 index a3120da5a001..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.TypeConverter.cs +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// - /// Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. - /// - public partial class ActionTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ActionType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.cs deleted file mode 100644 index d9485c4283cb..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ActionType.cs +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// - /// Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. - /// - public partial struct ActionType : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType Internal = @"Internal"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private ActionType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Conversion from arbitrary object to ActionType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new ActionType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type ActionType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type ActionType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is ActionType && Equals((ActionType)obj); - } - - /// Returns hashCode for enum ActionType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for ActionType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to ActionType - /// the value to convert to an instance of . - - public static implicit operator ActionType(string value) - { - return new ActionType(value); - } - - /// Implicit operator to convert ActionType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType e) - { - return e._value; - } - - /// Overriding != operator for enum ActionType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum ActionType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ActionType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.Completer.cs deleted file mode 100644 index b8e7dd77c80f..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Allowed values are Sum, Avg, Count, Min, Max. Default is Sum - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationTypeTypeConverter))] - public partial struct AggregationType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Sum".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Sum'", "Sum", global::System.Management.Automation.CompletionResultType.ParameterValue, "Sum"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Avg".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Avg'", "Avg", global::System.Management.Automation.CompletionResultType.ParameterValue, "Avg"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Count".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Count'", "Count", global::System.Management.Automation.CompletionResultType.ParameterValue, "Count"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Min".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Min'", "Min", global::System.Management.Automation.CompletionResultType.ParameterValue, "Min"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Max".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Max'", "Max", global::System.Management.Automation.CompletionResultType.ParameterValue, "Max"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.TypeConverter.cs deleted file mode 100644 index dd4a5dce1bed..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Allowed values are Sum, Avg, Count, Min, Max. Default is Sum - public partial class AggregationTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => AggregationType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.cs deleted file mode 100644 index a81abb82af4c..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AggregationType.cs +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Allowed values are Sum, Avg, Count, Min, Max. Default is Sum - public partial struct AggregationType : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType Avg = @"Avg"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType Count = @"Count"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType Max = @"Max"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType Min = @"Min"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType Sum = @"Sum"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private AggregationType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Conversion from arbitrary object to AggregationType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new AggregationType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type AggregationType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type AggregationType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is AggregationType && Equals((AggregationType)obj); - } - - /// Returns hashCode for enum AggregationType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for AggregationType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to AggregationType - /// the value to convert to an instance of . - - public static implicit operator AggregationType(string value) - { - return new AggregationType(value); - } - - /// Implicit operator to convert AggregationType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType e) - { - return e._value; - } - - /// Overriding != operator for enum AggregationType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum AggregationType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.Completer.cs deleted file mode 100644 index 7a0d26f0b296..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.Completer.cs +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Result. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultTypeTypeConverter))] - public partial struct AutomatedCheckResultType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Success".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Success'", "Success", global::System.Management.Automation.CompletionResultType.ParameterValue, "Success"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Warning".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Warning'", "Warning", global::System.Management.Automation.CompletionResultType.ParameterValue, "Warning"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Error".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Error'", "Error", global::System.Management.Automation.CompletionResultType.ParameterValue, "Error"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Information".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Information'", "Information", global::System.Management.Automation.CompletionResultType.ParameterValue, "Information"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.TypeConverter.cs deleted file mode 100644 index ce311977db76..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Result. - public partial class AutomatedCheckResultTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => AutomatedCheckResultType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.cs deleted file mode 100644 index 56f17de89ba7..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/AutomatedCheckResultType.cs +++ /dev/null @@ -1,102 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Result. - public partial struct AutomatedCheckResultType : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType Error = @"Error"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType Information = @"Information"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType Success = @"Success"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType Warning = @"Warning"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private AutomatedCheckResultType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Conversion from arbitrary object to AutomatedCheckResultType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new AutomatedCheckResultType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type AutomatedCheckResultType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type AutomatedCheckResultType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is AutomatedCheckResultType && Equals((AutomatedCheckResultType)obj); - } - - /// Returns hashCode for enum AutomatedCheckResultType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for AutomatedCheckResultType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to AutomatedCheckResultType - /// the value to convert to an instance of . - - public static implicit operator AutomatedCheckResultType(string value) - { - return new AutomatedCheckResultType(value); - } - - /// Implicit operator to convert AutomatedCheckResultType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType e) - { - return e._value; - } - - /// Overriding != operator for enum AutomatedCheckResultType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum AutomatedCheckResultType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.Completer.cs deleted file mode 100644 index 75d30aa1bc0c..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.Completer.cs +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Confidence of the search result. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ConfidenceTypeConverter))] - public partial struct Confidence : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Low".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Low'", "Low", global::System.Management.Automation.CompletionResultType.ParameterValue, "Low"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Medium".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Medium'", "Medium", global::System.Management.Automation.CompletionResultType.ParameterValue, "Medium"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "High".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'High'", "High", global::System.Management.Automation.CompletionResultType.ParameterValue, "High"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.TypeConverter.cs deleted file mode 100644 index e526426bdc6d..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Confidence of the search result. - public partial class ConfidenceTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => Confidence.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.cs deleted file mode 100644 index 761b71dae5b5..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Confidence.cs +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Confidence of the search result. - public partial struct Confidence : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence High = @"High"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence Low = @"Low"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence Medium = @"Medium"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private Confidence(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Conversion from arbitrary object to Confidence - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new Confidence(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type Confidence - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type Confidence (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is Confidence && Equals((Confidence)obj); - } - - /// Returns hashCode for enum Confidence - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for Confidence - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to Confidence - /// the value to convert to an instance of . - - public static implicit operator Confidence(string value) - { - return new Confidence(value); - } - - /// Implicit operator to convert Confidence to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence e) - { - return e._value; - } - - /// Overriding != operator for enum Confidence - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum Confidence - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.Completer.cs deleted file mode 100644 index 69febd767b63..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.Completer.cs +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// The type of identity that created the resource. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByTypeTypeConverter))] - public partial struct CreatedByType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "User".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'User'", "User", global::System.Management.Automation.CompletionResultType.ParameterValue, "User"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Application".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Application'", "Application", global::System.Management.Automation.CompletionResultType.ParameterValue, "Application"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "ManagedIdentity".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'ManagedIdentity'", "ManagedIdentity", global::System.Management.Automation.CompletionResultType.ParameterValue, "ManagedIdentity"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Key".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Key'", "Key", global::System.Management.Automation.CompletionResultType.ParameterValue, "Key"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.TypeConverter.cs deleted file mode 100644 index 41822d76e04a..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// The type of identity that created the resource. - public partial class CreatedByTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => CreatedByType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.cs deleted file mode 100644 index de3e68d32596..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/CreatedByType.cs +++ /dev/null @@ -1,102 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// The type of identity that created the resource. - public partial struct CreatedByType : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType Application = @"Application"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType Key = @"Key"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType ManagedIdentity = @"ManagedIdentity"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType User = @"User"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to CreatedByType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new CreatedByType(global::System.Convert.ToString(value)); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private CreatedByType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Compares values of enum type CreatedByType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type CreatedByType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is CreatedByType && Equals((CreatedByType)obj); - } - - /// Returns hashCode for enum CreatedByType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for CreatedByType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to CreatedByType - /// the value to convert to an instance of . - - public static implicit operator CreatedByType(string value) - { - return new CreatedByType(value); - } - - /// Implicit operator to convert CreatedByType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType e) - { - return e._value; - } - - /// Overriding != operator for enum CreatedByType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum CreatedByType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.CreatedByType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.Completer.cs deleted file mode 100644 index 8a10bad997a6..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of diagnostic provisioning. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningStateTypeConverter))] - public partial struct DiagnosticProvisioningState : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Succeeded'", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "PartialComplete".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'PartialComplete'", "PartialComplete", global::System.Management.Automation.CompletionResultType.ParameterValue, "PartialComplete"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Failed'", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Running".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Running'", "Running", global::System.Management.Automation.CompletionResultType.ParameterValue, "Running"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Canceled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Canceled'", "Canceled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Canceled"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.TypeConverter.cs deleted file mode 100644 index d2086f2164d0..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of diagnostic provisioning. - public partial class DiagnosticProvisioningStateTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => DiagnosticProvisioningState.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.cs deleted file mode 100644 index 81d12809133c..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/DiagnosticProvisioningState.cs +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of diagnostic provisioning. - public partial struct DiagnosticProvisioningState : - System.IEquatable - { - /// When Diagnostic request gets canceled. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState Canceled = @"Canceled"; - - /// All Diagnostics failed to run. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState Failed = @"Failed"; - - /// Some Diagnostics are still running or failed. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState PartialComplete = @"PartialComplete"; - - /// All Diagnostics are still running. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState Running = @"Running"; - - /// All Diagnostics in the Batch succeeded. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState Succeeded = @"Succeeded"; - - /// - /// the value for an instance of the Enum. - /// - private string _value { get; set; } - - /// Conversion from arbitrary object to DiagnosticProvisioningState - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new DiagnosticProvisioningState(global::System.Convert.ToString(value)); - } - - /// - /// Creates an instance of the Enum class. - /// - /// the value to create an instance for. - private DiagnosticProvisioningState(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Compares values of enum type DiagnosticProvisioningState - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type DiagnosticProvisioningState (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is DiagnosticProvisioningState && Equals((DiagnosticProvisioningState)obj); - } - - /// Returns hashCode for enum DiagnosticProvisioningState - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for DiagnosticProvisioningState - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to DiagnosticProvisioningState - /// the value to convert to an instance of . - - public static implicit operator DiagnosticProvisioningState(string value) - { - return new DiagnosticProvisioningState(value); - } - - /// Implicit operator to convert DiagnosticProvisioningState to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState e) - { - return e._value; - } - - /// Overriding != operator for enum DiagnosticProvisioningState - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum DiagnosticProvisioningState - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.Completer.cs deleted file mode 100644 index 8628afa98e36..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.Completer.cs +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of Troubleshooter Step execution. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatusTypeConverter))] - public partial struct ExecutionStatus : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Success".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Success'", "Success", global::System.Management.Automation.CompletionResultType.ParameterValue, "Success"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Running".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Running'", "Running", global::System.Management.Automation.CompletionResultType.ParameterValue, "Running"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Failed'", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Warning".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Warning'", "Warning", global::System.Management.Automation.CompletionResultType.ParameterValue, "Warning"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.TypeConverter.cs deleted file mode 100644 index fb32cd28b952..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of Troubleshooter Step execution. - public partial class ExecutionStatusTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ExecutionStatus.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.cs deleted file mode 100644 index 9fb0324f03f6..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ExecutionStatus.cs +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of Troubleshooter Step execution. - public partial struct ExecutionStatus : - System.IEquatable - { - /// Step execution failed - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus Failed = @"Failed"; - - /// Step execution running - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus Running = @"Running"; - - /// Step execution succeeded. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus Success = @"Success"; - - /// Step execution warning - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus Warning = @"Warning"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to ExecutionStatus - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new ExecutionStatus(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type ExecutionStatus - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type ExecutionStatus (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is ExecutionStatus && Equals((ExecutionStatus)obj); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private ExecutionStatus(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns hashCode for enum ExecutionStatus - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for ExecutionStatus - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to ExecutionStatus - /// the value to convert to an instance of . - - public static implicit operator ExecutionStatus(string value) - { - return new ExecutionStatus(value); - } - - /// Implicit operator to convert ExecutionStatus to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus e) - { - return e._value; - } - - /// Overriding != operator for enum ExecutionStatus - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum ExecutionStatus - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.Completer.cs deleted file mode 100644 index 5367ca93b022..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.Completer.cs +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Importance level of the insight. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevelTypeConverter))] - public partial struct ImportanceLevel : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Critical".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Critical'", "Critical", global::System.Management.Automation.CompletionResultType.ParameterValue, "Critical"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Warning".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Warning'", "Warning", global::System.Management.Automation.CompletionResultType.ParameterValue, "Warning"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Information".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Information'", "Information", global::System.Management.Automation.CompletionResultType.ParameterValue, "Information"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.TypeConverter.cs deleted file mode 100644 index f5c2ff43c867..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Importance level of the insight. - public partial class ImportanceLevelTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ImportanceLevel.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.cs deleted file mode 100644 index 03ef573b2d2d..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ImportanceLevel.cs +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Importance level of the insight. - public partial struct ImportanceLevel : - System.IEquatable - { - /// A critical insight has been found after running the diagnostic. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel Critical = @"Critical"; - - /// An information insight has been found after running the diagnostic. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel Information = @"Information"; - - /// A warning insight has been found after running the diagnostic. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel Warning = @"Warning"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to ImportanceLevel - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new ImportanceLevel(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type ImportanceLevel - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type ImportanceLevel (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is ImportanceLevel && Equals((ImportanceLevel)obj); - } - - /// Returns hashCode for enum ImportanceLevel - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private ImportanceLevel(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for ImportanceLevel - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to ImportanceLevel - /// the value to convert to an instance of . - - public static implicit operator ImportanceLevel(string value) - { - return new ImportanceLevel(value); - } - - /// Implicit operator to convert ImportanceLevel to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel e) - { - return e._value; - } - - /// Overriding != operator for enum ImportanceLevel - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum ImportanceLevel - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.Completer.cs deleted file mode 100644 index 3f3aaa56d618..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.Completer.cs +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Trigger criterion name. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.NameTypeConverter))] - public partial struct Name : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "SolutionId".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'SolutionId'", "SolutionId", global::System.Management.Automation.CompletionResultType.ParameterValue, "SolutionId"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "ProblemClassificationId".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'ProblemClassificationId'", "ProblemClassificationId", global::System.Management.Automation.CompletionResultType.ParameterValue, "ProblemClassificationId"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "ReplacementKey".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'ReplacementKey'", "ReplacementKey", global::System.Management.Automation.CompletionResultType.ParameterValue, "ReplacementKey"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.TypeConverter.cs deleted file mode 100644 index 6fbc995cf983..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Trigger criterion name. - public partial class NameTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => Name.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.cs deleted file mode 100644 index 242e31a9cdbd..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Name.cs +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Trigger criterion name. - public partial struct Name : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name ProblemClassificationId = @"ProblemClassificationId"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name ReplacementKey = @"ReplacementKey"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name SolutionId = @"SolutionId"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to Name - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new Name(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type Name - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type Name (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is Name && Equals((Name)obj); - } - - /// Returns hashCode for enum Name - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private Name(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for Name - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to Name - /// the value to convert to an instance of . - - public static implicit operator Name(string value) - { - return new Name(value); - } - - /// Implicit operator to convert Name to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name e) - { - return e._value; - } - - /// Overriding != operator for enum Name - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum Name - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.Completer.cs deleted file mode 100644 index 021a21d1c76f..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.Completer.cs +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// - /// The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is - /// "user,system" - /// - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.OriginTypeConverter))] - public partial struct Origin : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "user".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'user'", "user", global::System.Management.Automation.CompletionResultType.ParameterValue, "user"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "system".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'system'", "system", global::System.Management.Automation.CompletionResultType.ParameterValue, "system"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "user,system".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'user,system'", "user,system", global::System.Management.Automation.CompletionResultType.ParameterValue, "user,system"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.TypeConverter.cs deleted file mode 100644 index c2b2b9d497cb..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.TypeConverter.cs +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// - /// The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is - /// "user,system" - /// - public partial class OriginTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => Origin.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.cs deleted file mode 100644 index 4556497d463c..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Origin.cs +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// - /// The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is - /// "user,system" - /// - public partial struct Origin : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin System = @"system"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin User = @"user"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin UserSystem = @"user,system"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to Origin - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new Origin(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type Origin - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type Origin (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is Origin && Equals((Origin)obj); - } - - /// Returns hashCode for enum Origin - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private Origin(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for Origin - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to Origin - /// the value to convert to an instance of . - - public static implicit operator Origin(string value) - { - return new Origin(value); - } - - /// Implicit operator to convert Origin to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin e) - { - return e._value; - } - - /// Overriding != operator for enum Origin - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum Origin - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Origin e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.Completer.cs deleted file mode 100644 index a692b3d6d50d..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.Completer.cs +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Default is Text. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentTypeTypeConverter))] - public partial struct QuestionContentType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Text".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Text'", "Text", global::System.Management.Automation.CompletionResultType.ParameterValue, "Text"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Html".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Html'", "Html", global::System.Management.Automation.CompletionResultType.ParameterValue, "Html"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Markdown".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Markdown'", "Markdown", global::System.Management.Automation.CompletionResultType.ParameterValue, "Markdown"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.TypeConverter.cs deleted file mode 100644 index 6ee5a442f683..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Default is Text. - public partial class QuestionContentTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => QuestionContentType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.cs deleted file mode 100644 index cfdf98abedc8..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionContentType.cs +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Default is Text. - public partial struct QuestionContentType : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType Html = @"Html"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType Markdown = @"Markdown"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType Text = @"Text"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to QuestionContentType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new QuestionContentType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type QuestionContentType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type QuestionContentType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is QuestionContentType && Equals((QuestionContentType)obj); - } - - /// Returns hashCode for enum QuestionContentType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private QuestionContentType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for QuestionContentType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to QuestionContentType - /// the value to convert to an instance of . - - public static implicit operator QuestionContentType(string value) - { - return new QuestionContentType(value); - } - - /// Implicit operator to convert QuestionContentType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType e) - { - return e._value; - } - - /// Overriding != operator for enum QuestionContentType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum QuestionContentType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.Completer.cs deleted file mode 100644 index f3e97bc0b170..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.Completer.cs +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Question - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionTypeTypeConverter))] - public partial struct QuestionType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "RadioButton".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'RadioButton'", "RadioButton", global::System.Management.Automation.CompletionResultType.ParameterValue, "RadioButton"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Dropdown".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Dropdown'", "Dropdown", global::System.Management.Automation.CompletionResultType.ParameterValue, "Dropdown"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "TextInput".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'TextInput'", "TextInput", global::System.Management.Automation.CompletionResultType.ParameterValue, "TextInput"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "MultiLineInfoBox".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'MultiLineInfoBox'", "MultiLineInfoBox", global::System.Management.Automation.CompletionResultType.ParameterValue, "MultiLineInfoBox"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "DateTimePicker".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'DateTimePicker'", "DateTimePicker", global::System.Management.Automation.CompletionResultType.ParameterValue, "DateTimePicker"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "MultiSelect".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'MultiSelect'", "MultiSelect", global::System.Management.Automation.CompletionResultType.ParameterValue, "MultiSelect"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.TypeConverter.cs deleted file mode 100644 index 2d5d6b4edb0d..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Question - public partial class QuestionTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => QuestionType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.cs deleted file mode 100644 index 584b94b26749..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/QuestionType.cs +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Question - public partial struct QuestionType : - System.IEquatable - { - /// DateTime Picker - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType DateTimePicker = @"DateTimePicker"; - - /// SingleChoice dropdown. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType Dropdown = @"Dropdown"; - - /// MultiLineInfoBox - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType MultiLineInfoBox = @"MultiLineInfoBox"; - - /// Multi Select - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType MultiSelect = @"MultiSelect"; - - /// SingleChoice radio button - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType RadioButton = @"RadioButton"; - - /// Text Input - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType TextInput = @"TextInput"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to QuestionType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new QuestionType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type QuestionType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type QuestionType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is QuestionType && Equals((QuestionType)obj); - } - - /// Returns hashCode for enum QuestionType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private QuestionType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for QuestionType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to QuestionType - /// the value to convert to an instance of . - - public static implicit operator QuestionType(string value) - { - return new QuestionType(value); - } - - /// Implicit operator to convert QuestionType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType e) - { - return e._value; - } - - /// Overriding != operator for enum QuestionType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum QuestionType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.Completer.cs deleted file mode 100644 index 01259b55d593..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.Completer.cs +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Result type of the search result. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultTypeTypeConverter))] - public partial struct ResultType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Community".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Community'", "Community", global::System.Management.Automation.CompletionResultType.ParameterValue, "Community"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Documentation".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Documentation'", "Documentation", global::System.Management.Automation.CompletionResultType.ParameterValue, "Documentation"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.TypeConverter.cs deleted file mode 100644 index c04e3bb98d00..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Result type of the search result. - public partial class ResultTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ResultType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.cs deleted file mode 100644 index 3b33e719aebc..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ResultType.cs +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Result type of the search result. - public partial struct ResultType : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType Community = @"Community"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType Documentation = @"Documentation"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to ResultType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new ResultType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type ResultType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type ResultType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is ResultType && Equals((ResultType)obj); - } - - /// Returns hashCode for enum ResultType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private ResultType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for ResultType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to ResultType - /// the value to convert to an instance of . - - public static implicit operator ResultType(string value) - { - return new ResultType(value); - } - - /// Implicit operator to convert ResultType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType e) - { - return e._value; - } - - /// Overriding != operator for enum ResultType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum ResultType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.Completer.cs deleted file mode 100644 index dd03ffdce267..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of solution provisioning. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningStateTypeConverter))] - public partial struct SolutionProvisioningState : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Succeeded'", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "PartialComplete".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'PartialComplete'", "PartialComplete", global::System.Management.Automation.CompletionResultType.ParameterValue, "PartialComplete"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Failed'", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Running".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Running'", "Running", global::System.Management.Automation.CompletionResultType.ParameterValue, "Running"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Canceled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Canceled'", "Canceled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Canceled"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.TypeConverter.cs deleted file mode 100644 index 1d4ced8c1755..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of solution provisioning. - public partial class SolutionProvisioningStateTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => SolutionProvisioningState.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.cs deleted file mode 100644 index 371fd1c1278b..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionProvisioningState.cs +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of solution provisioning. - public partial struct SolutionProvisioningState : - System.IEquatable - { - /// When Solutions request gets canceled. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState Canceled = @"Canceled"; - - /// All Solutions failed to run. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState Failed = @"Failed"; - - /// Some Solutions are still running or failed. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState PartialComplete = @"PartialComplete"; - - /// All Solutions are still running. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState Running = @"Running"; - - /// All Solutions in the Batch succeeded. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState Succeeded = @"Succeeded"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to SolutionProvisioningState - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new SolutionProvisioningState(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type SolutionProvisioningState - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type SolutionProvisioningState (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is SolutionProvisioningState && Equals((SolutionProvisioningState)obj); - } - - /// Returns hashCode for enum SolutionProvisioningState - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private SolutionProvisioningState(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for SolutionProvisioningState - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to SolutionProvisioningState - /// the value to convert to an instance of . - - public static implicit operator SolutionProvisioningState(string value) - { - return new SolutionProvisioningState(value); - } - - /// Implicit operator to convert SolutionProvisioningState to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState e) - { - return e._value; - } - - /// Overriding != operator for enum SolutionProvisioningState - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum SolutionProvisioningState - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.Completer.cs deleted file mode 100644 index d4ba6a8357e6..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.Completer.cs +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Solution Type. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionTypeTypeConverter))] - public partial struct SolutionType : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Diagnostics".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Diagnostics'", "Diagnostics", global::System.Management.Automation.CompletionResultType.ParameterValue, "Diagnostics"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Solutions".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Solutions'", "Solutions", global::System.Management.Automation.CompletionResultType.ParameterValue, "Solutions"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Troubleshooters".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Troubleshooters'", "Troubleshooters", global::System.Management.Automation.CompletionResultType.ParameterValue, "Troubleshooters"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "SelfHelp".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'SelfHelp'", "SelfHelp", global::System.Management.Automation.CompletionResultType.ParameterValue, "SelfHelp"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.TypeConverter.cs deleted file mode 100644 index 0f6832117764..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Solution Type. - public partial class SolutionTypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => SolutionType.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.cs deleted file mode 100644 index b6b1948a9288..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/SolutionType.cs +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Solution Type. - public partial struct SolutionType : - System.IEquatable - { - /// Diagnostics resource type. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType Diagnostics = @"Diagnostics"; - - /// SelfHelp resource type. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType SelfHelp = @"SelfHelp"; - - /// Solutions resource type. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType Solutions = @"Solutions"; - - /// Troubleshooters resource type. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType Troubleshooters = @"Troubleshooters"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to SolutionType - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new SolutionType(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type SolutionType - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type SolutionType (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is SolutionType && Equals((SolutionType)obj); - } - - /// Returns hashCode for enum SolutionType - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private SolutionType(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for SolutionType - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to SolutionType - /// the value to convert to an instance of . - - public static implicit operator SolutionType(string value) - { - return new SolutionType(value); - } - - /// Implicit operator to convert SolutionType to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType e) - { - return e._value; - } - - /// Overriding != operator for enum SolutionType - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum SolutionType - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.Completer.cs deleted file mode 100644 index cae909eb69dd..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Denotes the status of the diagnostic resource. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.StatusTypeConverter))] - public partial struct Status : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Failed'", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "MissingInputs".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'MissingInputs'", "MissingInputs", global::System.Management.Automation.CompletionResultType.ParameterValue, "MissingInputs"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Running".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Running'", "Running", global::System.Management.Automation.CompletionResultType.ParameterValue, "Running"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Succeeded'", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Timeout".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Timeout'", "Timeout", global::System.Management.Automation.CompletionResultType.ParameterValue, "Timeout"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.TypeConverter.cs deleted file mode 100644 index 80f119686936..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Denotes the status of the diagnostic resource. - public partial class StatusTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => Status.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.cs deleted file mode 100644 index cdb0fdb02219..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Status.cs +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Denotes the status of the diagnostic resource. - public partial struct Status : - System.IEquatable - { - /// Diagnostic creation failed. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status Failed = @"Failed"; - - /// Request is missing required inputs to run. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status MissingInputs = @"MissingInputs"; - - /// Diagnostic is still running. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status Running = @"Running"; - - /// Diagnostic creation succeeded. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status Succeeded = @"Succeeded"; - - /// Diagnostic was timed out. - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status Timeout = @"Timeout"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to Status - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new Status(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type Status - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type Status (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is Status && Equals((Status)obj); - } - - /// Returns hashCode for enum Status - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private Status(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Returns string representation for Status - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Implicit operator to convert string to Status - /// the value to convert to an instance of . - - public static implicit operator Status(string value) - { - return new Status(value); - } - - /// Implicit operator to convert Status to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status e) - { - return e._value; - } - - /// Overriding != operator for enum Status - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum Status - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.Completer.cs deleted file mode 100644 index c1f7ac6613bc..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of troubleshooter provisioning. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningStateTypeConverter))] - public partial struct TroubleshooterProvisioningState : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Succeeded'", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Failed'", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Canceled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Canceled'", "Canceled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Canceled"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Running".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Running'", "Running", global::System.Management.Automation.CompletionResultType.ParameterValue, "Running"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "AutoContinue".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'AutoContinue'", "AutoContinue", global::System.Management.Automation.CompletionResultType.ParameterValue, "AutoContinue"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.TypeConverter.cs deleted file mode 100644 index 31c944503cc2..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of troubleshooter provisioning. - public partial class TroubleshooterProvisioningStateTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => TroubleshooterProvisioningState.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.cs deleted file mode 100644 index a74e22b75972..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/TroubleshooterProvisioningState.cs +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Status of troubleshooter provisioning. - public partial struct TroubleshooterProvisioningState : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState AutoContinue = @"AutoContinue"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState Canceled = @"Canceled"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState Failed = @"Failed"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState Running = @"Running"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState Succeeded = @"Succeeded"; - - /// - /// the value for an instance of the Enum. - /// - private string _value { get; set; } - - /// Conversion from arbitrary object to TroubleshooterProvisioningState - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new TroubleshooterProvisioningState(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type TroubleshooterProvisioningState - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState e) - { - return _value.Equals(e._value); - } - - /// - /// Compares values of enum type TroubleshooterProvisioningState (override for Object) - /// - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is TroubleshooterProvisioningState && Equals((TroubleshooterProvisioningState)obj); - } - - /// Returns hashCode for enum TroubleshooterProvisioningState - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for TroubleshooterProvisioningState - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// - /// Creates an instance of the Enum class. - /// - /// the value to create an instance for. - private TroubleshooterProvisioningState(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Implicit operator to convert string to TroubleshooterProvisioningState - /// the value to convert to an instance of . - - public static implicit operator TroubleshooterProvisioningState(string value) - { - return new TroubleshooterProvisioningState(value); - } - - /// Implicit operator to convert TroubleshooterProvisioningState to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState e) - { - return e._value; - } - - /// Overriding != operator for enum TroubleshooterProvisioningState - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum TroubleshooterProvisioningState - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.Completer.cs deleted file mode 100644 index 46526170135d..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Troubleshooting step. - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TypeTypeConverter))] - public partial struct Type : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Decision".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Decision'", "Decision", global::System.Management.Automation.CompletionResultType.ParameterValue, "Decision"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Solution".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Solution'", "Solution", global::System.Management.Automation.CompletionResultType.ParameterValue, "Solution"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Insight".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Insight'", "Insight", global::System.Management.Automation.CompletionResultType.ParameterValue, "Insight"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "AutomatedCheck".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'AutomatedCheck'", "AutomatedCheck", global::System.Management.Automation.CompletionResultType.ParameterValue, "AutomatedCheck"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "Input".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'Input'", "Input", global::System.Management.Automation.CompletionResultType.ParameterValue, "Input"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.TypeConverter.cs deleted file mode 100644 index e62b6f524876..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Troubleshooting step. - public partial class TypeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => Type.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.cs deleted file mode 100644 index ce441900df21..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/Type.cs +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Type of Troubleshooting step. - public partial struct Type : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type AutomatedCheck = @"AutomatedCheck"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type Decision = @"Decision"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type Input = @"Input"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type Insight = @"Insight"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type Solution = @"Solution"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to Type - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new Type(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type Type - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type Type (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is Type && Equals((Type)obj); - } - - /// Returns hashCode for enum Type - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for Type - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private Type(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Implicit operator to convert string to Type - /// the value to convert to an instance of . - - public static implicit operator Type(string value) - { - return new Type(value); - } - - /// Implicit operator to convert Type to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type e) - { - return e._value; - } - - /// Overriding != operator for enum Type - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum Type - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.Completer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.Completer.cs deleted file mode 100644 index 7f4a46d9ff11..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.Completer.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Validation scope - [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScopeTypeConverter))] - public partial struct ValidationScope : - System.Management.Automation.IArgumentCompleter - { - - /// - /// Implementations of this function are called by PowerShell to complete arguments. - /// - /// The name of the command that needs argument completion. - /// The name of the parameter that needs argument completion. - /// The (possibly empty) word being completed. - /// The command ast in case it is needed for completion. - /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot - /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. - /// - /// A collection of completion results, most like with ResultType set to ParameterValue. - /// - public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) - { - if (global::System.String.IsNullOrEmpty(wordToComplete) || "None".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'None'", "None", global::System.Management.Automation.CompletionResultType.ParameterValue, "None"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "URLFormat".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'URLFormat'", "URLFormat", global::System.Management.Automation.CompletionResultType.ParameterValue, "URLFormat"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "GuidFormat".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'GuidFormat'", "GuidFormat", global::System.Management.Automation.CompletionResultType.ParameterValue, "GuidFormat"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "IpAddressFormat".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'IpAddressFormat'", "IpAddressFormat", global::System.Management.Automation.CompletionResultType.ParameterValue, "IpAddressFormat"); - } - if (global::System.String.IsNullOrEmpty(wordToComplete) || "NumberOnlyFormat".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) - { - yield return new global::System.Management.Automation.CompletionResult("'NumberOnlyFormat'", "NumberOnlyFormat", global::System.Management.Automation.CompletionResultType.ParameterValue, "NumberOnlyFormat"); - } - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.TypeConverter.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.TypeConverter.cs deleted file mode 100644 index f7ce35f009f8..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.TypeConverter.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Validation scope - public partial class ValidationScopeTypeConverter : - global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; - - /// - /// Determines if the converter can convert the parameter to the parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the parameter, otherwise false. - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ValidationScope.CreateFrom(sourceValue); - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.cs deleted file mode 100644 index e7d7652069b9..000000000000 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/api/Support/ValidationScope.cs +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support -{ - - /// Validation scope - public partial struct ValidationScope : - System.IEquatable - { - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope GuidFormat = @"GuidFormat"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope IPAddressFormat = @"IpAddressFormat"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope None = @"None"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope NumberOnlyFormat = @"NumberOnlyFormat"; - - public static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope UrlFormat = @"URLFormat"; - - /// the value for an instance of the Enum. - private string _value { get; set; } - - /// Conversion from arbitrary object to ValidationScope - /// the value to convert to an instance of . - internal static object CreateFrom(object value) - { - return new ValidationScope(global::System.Convert.ToString(value)); - } - - /// Compares values of enum type ValidationScope - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope e) - { - return _value.Equals(e._value); - } - - /// Compares values of enum type ValidationScope (override for Object) - /// the value to compare against this instance. - /// true if the two instances are equal to the same value - public override bool Equals(object obj) - { - return obj is ValidationScope && Equals((ValidationScope)obj); - } - - /// Returns hashCode for enum ValidationScope - /// The hashCode of the value - public override int GetHashCode() - { - return this._value.GetHashCode(); - } - - /// Returns string representation for ValidationScope - /// A string for this value. - public override string ToString() - { - return this._value; - } - - /// Creates an instance of the Enum class. - /// the value to create an instance for. - private ValidationScope(string underlyingValue) - { - this._value = underlyingValue; - } - - /// Implicit operator to convert string to ValidationScope - /// the value to convert to an instance of . - - public static implicit operator ValidationScope(string value) - { - return new ValidationScope(value); - } - - /// Implicit operator to convert ValidationScope to string - /// the value to convert to an instance of . - - public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope e) - { - return e._value; - } - - /// Overriding != operator for enum ValidationScope - /// the value to compare against - /// the value to compare against - /// true if the two instances are not equal to the same value - public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope e2) - { - return !e2.Equals(e1); - } - - /// Overriding == operator for enum ValidationScope - /// the value to compare against - /// the value to compare against - /// true if the two instances are equal to the same value - public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope e1, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope e2) - { - return e2.Equals(e1); - } - } -} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_Get.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_Get.cs index da4dd2e36fd8..bd2f9a7f5533 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_Get.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_Get.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpDiagnostic_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Get the diagnostics using the 'diagnosticsResourceName' you chose while creating the diagnostic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpDiagnostic_Get : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class GetAzSelfHelpDiagnostic_Get : global::System.Management.Aut /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class GetAzSelfHelpDiagnostic_Get : global::System.Management.Aut [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -80,7 +101,7 @@ public partial class GetAzSelfHelpDiagnostic_Get : global::System.Management.Aut /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -134,24 +155,24 @@ public partial class GetAzSelfHelpDiagnostic_Get : global::System.Management.Aut /// happens on that response. Implement this method in a partial class to enable this behavior ///
/// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -174,6 +195,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -195,7 +221,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpDiagnostic_Get() { @@ -246,8 +272,33 @@ public GetAzSelfHelpDiagnostic_Get() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -300,7 +351,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -318,7 +369,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -356,12 +407,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,15 +429,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -396,12 +447,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,8 +464,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_GetViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_GetViaIdentity.cs index cb4208bfad7e..36cecef2c337 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_GetViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiagnostic_GetViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpDiagnostic_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Get the diagnostics using the 'diagnosticsResourceName' you chose while creating the diagnostic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpDiagnostic_GetViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class GetAzSelfHelpDiagnostic_GetViaIdentity : global::System.Man /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class GetAzSelfHelpDiagnostic_GetViaIdentity : global::System.Man [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -88,7 +109,7 @@ public partial class GetAzSelfHelpDiagnostic_GetViaIdentity : global::System.Man /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -111,24 +132,24 @@ public partial class GetAzSelfHelpDiagnostic_GetViaIdentity : global::System.Man /// happens on that response. Implement this method in a partial class to enable this behavior ///
/// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -151,6 +172,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -172,7 +198,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpDiagnostic_GetViaIdentity() { @@ -223,8 +249,33 @@ public GetAzSelfHelpDiagnostic_GetViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -277,7 +328,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -311,7 +362,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -349,12 +400,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -371,7 +422,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -389,12 +440,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -406,8 +457,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiscoverySolution_List.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiscoverySolution_List.cs index ca5228f3ab7e..9afd9e816d44 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiscoverySolution_List.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpDiscoverySolution_List.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -20,12 +22,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] List=>GET:"/providers/Microsoft.Help/discoverySolutions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpDiscoverySolution_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Lists the relevant Azure diagnostics and solutions using [problemClassification API](https://learn.microsoft.com/rest/api/support/problem-classifications/list?tabs=HTTP)) AND resourceUri or resourceType.
Discovery Solutions is the initial entry point within Help API, which identifies relevant Azure diagnostics and solutions.

Required Input : problemClassificationId (Use the [problemClassification API](https://learn.microsoft.com/rest/api/support/problem-classifications/list?tabs=HTTP))
Optional input: resourceUri OR resource Type

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics and Solutions API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/discoverySolutions", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpDiscoverySolution_List : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -41,17 +44,32 @@ public partial class GetAzSelfHelpDiscoverySolution_List : global::System.Manage ///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + /// A flag to tell whether it is the first onOK call. private bool _isFirst = true; /// Link to retrieve next page. private string _nextLink; + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -65,6 +83,9 @@ public partial class GetAzSelfHelpDiscoverySolution_List : global::System.Manage [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// Backing field for property. private string _filter; @@ -109,7 +130,7 @@ public partial class GetAzSelfHelpDiscoverySolution_List : global::System.Manage /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -146,24 +167,24 @@ public partial class GetAzSelfHelpDiscoverySolution_List : global::System.Manage /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -186,6 +207,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -207,7 +233,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpDiscoverySolution_List() { @@ -258,8 +284,33 @@ public GetAzSelfHelpDiscoverySolution_List() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -312,7 +363,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -330,7 +381,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null,Skiptoken=this.InvocationInformation.BoundParameters.ContainsKey("Skiptoken") ? Skiptoken : null}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null,Skiptoken=this.InvocationInformation.BoundParameters.ContainsKey("Skiptoken") ? Skiptoken : null}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -368,12 +419,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -390,15 +441,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null, Skiptoken=this.InvocationInformation.BoundParameters.ContainsKey("Skiptoken") ? Skiptoken : null }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null, Skiptoken=this.InvocationInformation.BoundParameters.ContainsKey("Skiptoken") ? Skiptoken : null }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -408,12 +459,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -425,15 +476,38 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // pageable / value / nextLink - var result = await response; - WriteObject(result.Value,true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } _nextLink = result.NextLink; if (_isFirst) { _isFirst = false; - while (_nextLink != null) + while (!String.IsNullOrEmpty(_nextLink)) { if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpOperation_List.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpOperation_List.cs index 6edfd2a3fc47..8feaf1cb9991 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpOperation_List.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpOperation_List.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Returns list of operations. @@ -14,12 +16,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpOperation_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Returns list of operations.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/operations", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpOperation_List : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -35,17 +38,32 @@ public partial class GetAzSelfHelpOperation_List : global::System.Management.Aut /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + /// A flag to tell whether it is the first onOK call. private bool _isFirst = true; /// Link to retrieve next page. private string _nextLink; + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -59,6 +77,9 @@ public partial class GetAzSelfHelpOperation_List : global::System.Management.Aut [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -85,7 +106,7 @@ public partial class GetAzSelfHelpOperation_List : global::System.Management.Aut /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -108,24 +129,24 @@ public partial class GetAzSelfHelpOperation_List : global::System.Management.Aut /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -148,6 +169,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -169,7 +195,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpOperation_List() { @@ -220,8 +246,33 @@ public GetAzSelfHelpOperation_List() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -274,7 +325,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -292,7 +343,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -330,12 +381,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -352,7 +403,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -370,12 +421,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperationListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -387,15 +438,38 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperationListResult + var result = (await response); // response should be returning an array of some kind. +Pageable // pageable / value / nextLink - var result = await response; - WriteObject(result.Value,true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } _nextLink = result.NextLink; if (_isFirst) { _isFirst = false; - while (_nextLink != null) + while (!String.IsNullOrEmpty(_nextLink)) { if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_Get.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_Get.cs index 8ad891ecce73..23fe47cc1a0b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_Get.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_Get.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpSimplifiedSolution_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpSimplifiedSolution_Get : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class GetAzSelfHelpSimplifiedSolution_Get : global::System.Manage /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class GetAzSelfHelpSimplifiedSolution_Get : global::System.Manage [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -80,7 +101,7 @@ public partial class GetAzSelfHelpSimplifiedSolution_Get : global::System.Manage /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -134,24 +155,24 @@ public partial class GetAzSelfHelpSimplifiedSolution_Get : global::System.Manage /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -174,6 +195,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -195,7 +221,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpSimplifiedSolution_Get() { @@ -246,8 +272,33 @@ public GetAzSelfHelpSimplifiedSolution_Get() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -300,7 +351,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -318,7 +369,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -356,12 +407,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,15 +429,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -396,12 +447,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,8 +464,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_GetViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_GetViaIdentity.cs index eeca26eeda8a..35fe08ea9ab7 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_GetViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSimplifiedSolution_GetViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpSimplifiedSolution_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpSimplifiedSolution_GetViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class GetAzSelfHelpSimplifiedSolution_GetViaIdentity : global::Sy /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class GetAzSelfHelpSimplifiedSolution_GetViaIdentity : global::Sy [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -88,7 +109,7 @@ public partial class GetAzSelfHelpSimplifiedSolution_GetViaIdentity : global::Sy /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -111,24 +132,24 @@ public partial class GetAzSelfHelpSimplifiedSolution_GetViaIdentity : global::Sy /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -151,6 +172,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -172,7 +198,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpSimplifiedSolution_GetViaIdentity() { @@ -223,8 +249,33 @@ public GetAzSelfHelpSimplifiedSolution_GetViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -277,7 +328,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -311,7 +362,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -349,12 +400,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -371,7 +422,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -389,12 +440,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -406,8 +457,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_Get.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_Get.cs index c7f3931a11ef..60ce8429bad3 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_Get.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_Get.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -16,12 +18,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/providers/Microsoft.Help/selfHelp/{solutionId}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpSolutionSelfHelp_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot their issues.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/selfHelp/{solutionId}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpSolutionSelfHelp_Get : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -37,11 +40,26 @@ public partial class GetAzSelfHelpSolutionSelfHelp_Get : global::System.Manageme /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -55,6 +73,9 @@ public partial class GetAzSelfHelpSolutionSelfHelp_Get : global::System.Manageme [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -81,7 +102,7 @@ public partial class GetAzSelfHelpSolutionSelfHelp_Get : global::System.Manageme /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -120,24 +141,24 @@ public partial class GetAzSelfHelpSolutionSelfHelp_Get : global::System.Manageme /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -160,6 +181,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -181,7 +207,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpSolutionSelfHelp_Get() { @@ -232,8 +258,33 @@ public GetAzSelfHelpSolutionSelfHelp_Get() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -286,7 +337,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -304,7 +355,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SolutionId=SolutionId}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SolutionId=SolutionId}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -342,12 +393,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -364,15 +415,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SolutionId=SolutionId }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SolutionId=SolutionId }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -382,12 +433,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -399,8 +450,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_GetViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_GetViaIdentity.cs index 30685e4e15e3..2303bbd45bd7 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_GetViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolutionSelfHelp_GetViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -16,12 +18,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/providers/Microsoft.Help/selfHelp/{solutionId}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpSolutionSelfHelp_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Finds and Executes a Self Help Solution based on the Solution Id. These are static self help content to help users troubleshoot their issues.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/selfHelp/{solutionId}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpSolutionSelfHelp_GetViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -37,11 +40,26 @@ public partial class GetAzSelfHelpSolutionSelfHelp_GetViaIdentity : global::Syst /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -55,6 +73,9 @@ public partial class GetAzSelfHelpSolutionSelfHelp_GetViaIdentity : global::Syst [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -89,7 +110,7 @@ public partial class GetAzSelfHelpSolutionSelfHelp_GetViaIdentity : global::Syst /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -112,24 +133,24 @@ public partial class GetAzSelfHelpSolutionSelfHelp_GetViaIdentity : global::Syst /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -152,6 +173,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -173,7 +199,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpSolutionSelfHelp_GetViaIdentity() { @@ -224,8 +250,33 @@ public GetAzSelfHelpSolutionSelfHelp_GetViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -278,7 +329,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -308,7 +359,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -346,12 +397,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -368,7 +419,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -386,12 +437,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -403,8 +454,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_Get.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_Get.cs index d84c36ab0eb5..aec2450ccafa 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_Get.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_Get.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpSolution_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Get the solution using the applicable solutionResourceName while creating the solution.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpSolution_Get : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class GetAzSelfHelpSolution_Get : global::System.Management.Autom /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class GetAzSelfHelpSolution_Get : global::System.Management.Autom [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -80,7 +101,7 @@ public partial class GetAzSelfHelpSolution_Get : global::System.Management.Autom /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -134,24 +155,24 @@ public partial class GetAzSelfHelpSolution_Get : global::System.Management.Autom /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -174,6 +195,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -195,7 +221,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpSolution_Get() { @@ -246,8 +272,33 @@ public GetAzSelfHelpSolution_Get() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -300,7 +351,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -318,7 +369,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -356,12 +407,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,15 +429,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, ResourceName=ResourceName }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, ResourceName=ResourceName }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -396,12 +447,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,8 +464,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_GetViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_GetViaIdentity.cs index d3d9b33e415c..75a22c99ce06 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_GetViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpSolution_GetViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpSolution_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Get the solution using the applicable solutionResourceName while creating the solution.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpSolution_GetViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class GetAzSelfHelpSolution_GetViaIdentity : global::System.Manag /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class GetAzSelfHelpSolution_GetViaIdentity : global::System.Manag [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -88,7 +109,7 @@ public partial class GetAzSelfHelpSolution_GetViaIdentity : global::System.Manag /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -111,24 +132,24 @@ public partial class GetAzSelfHelpSolution_GetViaIdentity : global::System.Manag /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -151,6 +172,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -172,7 +198,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpSolution_GetViaIdentity() { @@ -223,8 +249,33 @@ public GetAzSelfHelpSolution_GetViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -277,7 +328,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -311,7 +362,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -349,12 +400,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -371,7 +422,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -389,12 +440,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -406,8 +457,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_Get.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_Get.cs index 44cfae54a2ab..c6789f53328b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_Get.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_Get.cs @@ -6,24 +6,27 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// /// Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is /// being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and /// result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created - /// using the Create API. + /// using the get API. ///
/// /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpTroubleshooter_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the Create API.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the get API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpTroubleshooter_Get : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -39,11 +42,26 @@ public partial class GetAzSelfHelpTroubleshooter_Get : global::System.Management /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -57,6 +75,9 @@ public partial class GetAzSelfHelpTroubleshooter_Get : global::System.Management [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -98,7 +119,7 @@ public partial class GetAzSelfHelpTroubleshooter_Get : global::System.Management /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -137,24 +158,24 @@ public partial class GetAzSelfHelpTroubleshooter_Get : global::System.Management /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -177,6 +198,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -198,7 +224,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpTroubleshooter_Get() { @@ -249,8 +275,33 @@ public GetAzSelfHelpTroubleshooter_Get() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -303,7 +354,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -321,7 +372,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -359,12 +410,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -381,15 +432,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -399,12 +450,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -416,8 +467,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_GetViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_GetViaIdentity.cs index 4f9276a91f7f..f97bd39d1c5d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_GetViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/GetAzSelfHelpTroubleshooter_GetViaIdentity.cs @@ -6,24 +6,27 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// /// Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is /// being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and /// result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created - /// using the Create API. + /// using the get API. ///
/// /// [OpenAPI] Get=>GET:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSelfHelpTroubleshooter_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the Create API.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Gets troubleshooter instance result which includes the step status/result of the troubleshooter resource name that is being executed.
Get API is used to retrieve the result of a Troubleshooter instance, which includes the status and result of each step in the Troubleshooter workflow. This API requires the Troubleshooter resource name that was created using the get API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", ApiVersion = "2024-03-01-preview")] public partial class GetAzSelfHelpTroubleshooter_GetViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -39,11 +42,26 @@ public partial class GetAzSelfHelpTroubleshooter_GetViaIdentity : global::System /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -57,6 +75,9 @@ public partial class GetAzSelfHelpTroubleshooter_GetViaIdentity : global::System [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -91,7 +112,7 @@ public partial class GetAzSelfHelpTroubleshooter_GetViaIdentity : global::System /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -114,24 +135,24 @@ public partial class GetAzSelfHelpTroubleshooter_GetViaIdentity : global::System /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -154,6 +175,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -175,7 +201,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public GetAzSelfHelpTroubleshooter_GetViaIdentity() { @@ -226,8 +252,33 @@ public GetAzSelfHelpTroubleshooter_GetViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -280,7 +331,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -314,7 +365,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -352,12 +403,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -374,7 +425,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -392,12 +443,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -409,8 +460,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_Post.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_Post.cs index edbabc87ca1f..53499e7b0907 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_Post.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_Post.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Post=>POST:"/{scope}/providers/Microsoft.Help/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpCheckNameAvailability_Post", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/checkNameAvailability", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpCheckNameAvailability_Post : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,13 +39,28 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_Post : global::System /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest _checkNameAvailabilityRequest; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest _checkNameAvailabilityRequest; /// The check availability request body. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The check availability request body.", ValueFromPipeline = true)] @@ -51,8 +69,9 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_Post : global::System ReadOnly = false, Description = @"The check availability request body.", SerializedName = @"checkNameAvailabilityRequest", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest CheckNameAvailabilityRequest { get => this._checkNameAvailabilityRequest; set => this._checkNameAvailabilityRequest = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest CheckNameAvailabilityRequest { get => this._checkNameAvailabilityRequest; set => this._checkNameAvailabilityRequest = value; } /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -67,6 +86,9 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_Post : global::System [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -93,7 +115,7 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_Post : global::System /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -132,24 +154,24 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_Post : global::System /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -172,6 +194,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -193,7 +220,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpCheckNameAvailability_Post() { @@ -244,8 +271,33 @@ public InvokeAzSelfHelpCheckNameAvailability_Post() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -301,7 +353,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -319,7 +371,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,body=CheckNameAvailabilityRequest}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -357,12 +409,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -379,15 +431,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, body=CheckNameAvailabilityRequest }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, body=CheckNameAvailabilityRequest }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -397,12 +449,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -414,8 +466,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostExpanded.cs index abb3cff60f30..4d0af98e5730 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostExpanded.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -15,12 +17,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Post=>POST:"/{scope}/providers/Microsoft.Help/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpCheckNameAvailability_PostExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/checkNameAvailability", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpCheckNameAvailability_PostExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -37,13 +40,28 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostExpanded : global private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// The check availability request body. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest _checkNameAvailabilityRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.CheckNameAvailabilityRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest _checkNameAvailabilityRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.CheckNameAvailabilityRequest(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -57,6 +75,9 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostExpanded : global [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -94,7 +115,7 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostExpanded : global /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -144,24 +165,24 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostExpanded : global /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -184,6 +205,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -205,7 +231,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpCheckNameAvailability_PostExpanded() { @@ -256,8 +282,33 @@ public InvokeAzSelfHelpCheckNameAvailability_PostExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -313,7 +364,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -331,7 +382,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,body=_checkNameAvailabilityRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -369,12 +420,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -391,15 +442,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, body=_checkNameAvailabilityRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, body=_checkNameAvailabilityRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -409,12 +460,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -426,8 +477,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaJsonFilePath.cs similarity index 76% rename from generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaJsonFilePath.cs index e0d79cc09e72..9eb2937d5896 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaJsonFilePath.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -14,13 +16,15 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// /// [OpenAPI] Post=>POST:"/{scope}/providers/Microsoft.Help/checkNameAvailability" /// - [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpCheckNameAvailability_PostViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse))] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpCheckNameAvailability_PostViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/checkNameAvailability", ApiVersion = "2024-03-01-preview")] - public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,23 +40,27 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity : glo /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest _checkNameAvailabilityRequest; - - /// The check availability request body. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The check availability request body.", ValueFromPipeline = true)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = true, - ReadOnly = false, - Description = @"The check availability request body.", - SerializedName = @"checkNameAvailabilityRequest", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest CheckNameAvailabilityRequest { get => this._checkNameAvailabilityRequest; set => this._checkNameAvailabilityRequest = value; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -67,6 +75,9 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity : glo [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -79,17 +90,22 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity : glo [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; - - /// Identity Parameter - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } - /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Post operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Post operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Post operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + /// /// cancellation delegate. Stops the cmdlet when called. /// @@ -101,7 +117,7 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity : glo /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -119,29 +135,45 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity : glo [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -164,6 +196,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -185,9 +222,9 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// - public InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity() + public InvokeAzSelfHelpCheckNameAvailability_PostViaJsonFilePath() { } @@ -236,8 +273,33 @@ public InvokeAzSelfHelpCheckNameAvailability_PostViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -293,7 +355,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -306,24 +368,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - if (InputObject?.Id != null) - { - await this.Client.CheckNameAvailabilityPostViaIdentity(InputObject.Id, CheckNameAvailabilityRequest, onOk, onDefault, this, Pipeline); - } - else - { - // try to call with PATH parameters from Input Object - if (null == InputObject.Scope) - { - ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Scope"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); - } - await this.Client.CheckNameAvailabilityPost(InputObject.Scope ?? null, CheckNameAvailabilityRequest, onOk, onDefault, this, Pipeline); - } + await this.Client.CheckNameAvailabilityPostViaJsonString(Scope, _jsonString, onOk, onDefault, this, Pipeline); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=CheckNameAvailabilityRequest}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -361,12 +411,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -383,15 +433,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=CheckNameAvailabilityRequest }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=CheckNameAvailabilityRequest }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -401,12 +451,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -418,8 +468,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaJsonString.cs similarity index 77% rename from generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaJsonString.cs index 1380ae700965..87b2e69ce9ae 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpCheckNameAvailability_PostViaJsonString.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -14,13 +16,15 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// /// [OpenAPI] Post=>POST:"/{scope}/providers/Microsoft.Help/checkNameAvailability" /// - [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpCheckNameAvailability_PostViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse))] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpCheckNameAvailability_PostViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"This API is used to check the uniqueness of a resource name used for a diagnostic, troubleshooter or solutions")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/checkNameAvailability", ApiVersion = "2024-03-01-preview")] - public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,14 +40,26 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpand /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); - /// The check availability request body. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest _checkNameAvailabilityRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.CheckNameAvailabilityRequest(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -57,6 +73,9 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpand [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -69,17 +88,22 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpand [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; - - /// Identity Parameter - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } - /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Post operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Post operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Post operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + /// /// cancellation delegate. Stops the cmdlet when called. /// @@ -88,21 +112,10 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpand /// cancellation token. global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; - /// The name of the resource for which availability needs to be checked. - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The name of the resource for which availability needs to be checked.")] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The name of the resource for which availability needs to be checked.", - SerializedName = @"name", - PossibleTypes = new [] { typeof(string) })] - public string Name { get => _checkNameAvailabilityRequestBody.Name ?? null; set => _checkNameAvailabilityRequestBody.Name = value; } - /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -120,40 +133,45 @@ public partial class InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpand [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } - /// The resource type. - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The resource type.")] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, + Required = true, ReadOnly = false, - Description = @"The resource type.", - SerializedName = @"type", + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", PossibleTypes = new [] { typeof(string) })] - public string Type { get => _checkNameAvailabilityRequestBody.Type ?? null; set => _checkNameAvailabilityRequestBody.Type = value; } + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -176,6 +194,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -197,9 +220,9 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// - public InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded() + public InvokeAzSelfHelpCheckNameAvailability_PostViaJsonString() { } @@ -248,8 +271,33 @@ public InvokeAzSelfHelpCheckNameAvailability_PostViaIdentityExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -305,7 +353,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -318,24 +366,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - if (InputObject?.Id != null) - { - await this.Client.CheckNameAvailabilityPostViaIdentity(InputObject.Id, _checkNameAvailabilityRequestBody, onOk, onDefault, this, Pipeline); - } - else - { - // try to call with PATH parameters from Input Object - if (null == InputObject.Scope) - { - ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Scope"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); - } - await this.Client.CheckNameAvailabilityPost(InputObject.Scope ?? null, _checkNameAvailabilityRequestBody, onOk, onDefault, this, Pipeline); - } + await this.Client.CheckNameAvailabilityPostViaJsonString(Scope, _jsonString, onOk, onDefault, this, Pipeline); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_checkNameAvailabilityRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -373,12 +409,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -395,15 +431,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_checkNameAvailabilityRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_checkNameAvailabilityRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -413,12 +449,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -430,8 +466,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_Continue.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_Continue.cs index f0402c7310c3..1b1da086af3d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_Continue.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_Continue.cs @@ -6,23 +6,26 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the - /// next step in the process. This API is used after the Troubleshooter has been created using the Create API. + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. ///
/// /// [OpenAPI] Continue=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpContinueTroubleshooter_Continue", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the continue API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpContinueTroubleshooter_Continue : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -38,16 +41,31 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_Continue : global::S /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody _continueRequestBody; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody _continueRequestBody; /// Troubleshooter ContinueRequest body. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Troubleshooter ContinueRequest body.", ValueFromPipeline = true)] @@ -56,8 +74,9 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_Continue : global::S ReadOnly = false, Description = @"Troubleshooter ContinueRequest body.", SerializedName = @"continueRequestBody", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody ContinueRequestBody { get => this._continueRequestBody; set => this._continueRequestBody = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody ContinueRequestBody { get => this._continueRequestBody; set => this._continueRequestBody = value; } /// /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet @@ -69,6 +88,9 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_Continue : global::S [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -102,7 +124,7 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_Continue : global::S /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -155,12 +177,12 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_Continue : global::S /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -195,6 +217,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -216,7 +243,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpContinueTroubleshooter_Continue() { @@ -267,8 +294,33 @@ public InvokeAzSelfHelpContinueTroubleshooter_Continue() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -324,7 +376,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -342,7 +394,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,TroubleshooterName=TroubleshooterName,body=ContinueRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,TroubleshooterName=TroubleshooterName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -380,12 +432,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -402,15 +454,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, TroubleshooterName=TroubleshooterName, body=ContinueRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, TroubleshooterName=TroubleshooterName, body=ContinueRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded.cs index 00f8532de263..5ccf2a1d147f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded.cs @@ -6,23 +6,26 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the - /// next step in the process. This API is used after the Troubleshooter has been created using the Create API. + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. ///
/// /// [OpenAPI] Continue=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpContinueTroubleshooter_ContinueExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the continue API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -39,13 +42,28 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded : g private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Troubleshooter ContinueRequest body. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody _continueRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ContinueRequestBody(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody _continueRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ContinueRequestBody(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -59,6 +77,9 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded : g [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -92,7 +113,7 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded : g /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -119,8 +140,8 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded : g ReadOnly = false, Description = @".", SerializedName = @"responses", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] Response { get => _continueRequestBody.Response ?? null /* arrayOf */; set => _continueRequestBody.Response = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[] Response { get => _continueRequestBody.Response?.ToArray() ?? null /* fixedArrayOf */; set => _continueRequestBody.Response = (value != null ? new System.Collections.Generic.List(value) : null); } /// Backing field for property. private string _scope; @@ -168,12 +189,12 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded : g /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -208,6 +229,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -229,7 +255,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded() { @@ -280,8 +306,33 @@ public InvokeAzSelfHelpContinueTroubleshooter_ContinueExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -337,7 +388,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -355,7 +406,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,TroubleshooterName=TroubleshooterName,body=_continueRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,TroubleshooterName=TroubleshooterName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -393,12 +444,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -415,15 +466,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, TroubleshooterName=TroubleshooterName, body=_continueRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, TroubleshooterName=TroubleshooterName, body=_continueRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity.cs index 67b35c61c3a0..5463e9a061f8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity.cs @@ -6,23 +6,26 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the - /// next step in the process. This API is used after the Troubleshooter has been created using the Create API. + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. ///
/// /// [OpenAPI] Continue=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpContinueTroubleshooter_ContinueViaIdentity", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the continue API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -38,16 +41,31 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody _continueRequestBody; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody _continueRequestBody; /// Troubleshooter ContinueRequest body. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Troubleshooter ContinueRequest body.", ValueFromPipeline = true)] @@ -56,8 +74,9 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity ReadOnly = false, Description = @"Troubleshooter ContinueRequest body.", SerializedName = @"continueRequestBody", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody ContinueRequestBody { get => this._continueRequestBody; set => this._continueRequestBody = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody ContinueRequestBody { get => this._continueRequestBody; set => this._continueRequestBody = value; } /// /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet @@ -69,6 +88,9 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -110,7 +132,7 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -133,12 +155,12 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -173,6 +195,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -194,7 +221,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity() { @@ -245,8 +272,33 @@ public InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -302,7 +354,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -336,7 +388,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ContinueRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -374,12 +426,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -396,15 +448,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ContinueRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ContinueRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded.cs index e9d087b51ef0..d91ccb014c95 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded.cs @@ -6,23 +6,26 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the - /// next step in the process. This API is used after the Troubleshooter has been created using the Create API. + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. ///
/// /// [OpenAPI] Continue=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the Create API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the continue API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -39,13 +42,28 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityE private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Troubleshooter ContinueRequest body. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody _continueRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ContinueRequestBody(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody _continueRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ContinueRequestBody(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -59,6 +77,9 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityE [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -100,7 +121,7 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityE /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -127,8 +148,8 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityE ReadOnly = false, Description = @".", SerializedName = @"responses", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[] Response { get => _continueRequestBody.Response ?? null /* arrayOf */; set => _continueRequestBody.Response = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[] Response { get => _continueRequestBody.Response?.ToArray() ?? null /* fixedArrayOf */; set => _continueRequestBody.Response = (value != null ? new System.Collections.Generic.List(value) : null); } /// Unique id of the result. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Unique id of the result.")] @@ -146,12 +167,12 @@ public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityE /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -186,6 +207,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -207,7 +233,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet + /// Initializes a new instance of the cmdlet /// class. /// public InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded() @@ -259,8 +285,33 @@ public InvokeAzSelfHelpContinueTroubleshooter_ContinueViaIdentityExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -316,7 +367,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -350,7 +401,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_continueRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -388,12 +439,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -410,15 +461,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_continueRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_continueRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath.cs new file mode 100644 index 000000000000..ccd0293318be --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath.cs @@ -0,0 +1,502 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource + /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. + ///
+ /// + /// [OpenAPI] Continue=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the continue API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Continue operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Continue operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Continue operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// Backing field for property. + private string _troubleshooterName; + + /// Troubleshooter resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Troubleshooter resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Troubleshooter resource Name.", + SerializedName = @"troubleshooterName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string TroubleshooterName { get => this._troubleshooterName; set => this._troubleshooterName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the header result as a from the remote call + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task headers, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// + /// Initializes a new instance of the cmdlet + /// class. + /// + public InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonFilePath() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'TroubleshootersContinue' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.TroubleshootersContinueViaJsonString(Scope, TroubleshooterName, _jsonString, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,TroubleshooterName=TroubleshooterName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the header result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task headers) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, headers, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonString.cs new file mode 100644 index 000000000000..88f78966a4a5 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonString.cs @@ -0,0 +1,499 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource + /// name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the + /// next step in the process. This API is used after the Troubleshooter has been created using the continue API. + ///
+ /// + /// [OpenAPI] Continue=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpContinueTroubleshooter_ContinueViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Uses ‘stepId’ and ‘responses’ as the trigger to continue the troubleshooting steps for the respective troubleshooter resource name.
Continue API is used to provide inputs that are required for the specific troubleshooter to progress into the next step in the process. This API is used after the Troubleshooter has been created using the continue API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/continue", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Continue operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Continue operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Continue operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// Backing field for property. + private string _troubleshooterName; + + /// Troubleshooter resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Troubleshooter resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Troubleshooter resource Name.", + SerializedName = @"troubleshooterName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string TroubleshooterName { get => this._troubleshooterName; set => this._troubleshooterName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the header result as a from the remote call + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task headers, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public InvokeAzSelfHelpContinueTroubleshooter_ContinueViaJsonString() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'TroubleshootersContinue' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.TroubleshootersContinueViaJsonString(Scope, TroubleshooterName, _jsonString, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,TroubleshooterName=TroubleshooterName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the header result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task headers) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, headers, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post.cs index 377d309952bb..e037e4f8b863 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Solution discovery using natural language processing. @@ -13,12 +15,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Post=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -34,11 +37,26 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -53,7 +71,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post public global::System.Management.Automation.PSObject DefaultProfile { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest _discoverSolutionRequest; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest _discoverSolutionRequest; /// Discover NLP request. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Discover NLP request.", ValueFromPipeline = true)] @@ -62,8 +80,12 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post ReadOnly = false, Description = @"Discover NLP request.", SerializedName = @"discoverSolutionRequest", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest DiscoverSolutionRequest { get => this._discoverSolutionRequest; set => this._discoverSolutionRequest = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest DiscoverSolutionRequest { get => this._discoverSolutionRequest; set => this._discoverSolutionRequest = value; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] @@ -91,7 +113,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -123,7 +145,8 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.DefaultInfo( Name = @"", Description =@"", - Script = @"(Get-AzContext).Subscription.Id")] + Script = @"(Get-AzContext).Subscription.Id", + SetCondition = @"")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } @@ -132,24 +155,24 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -172,6 +195,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -193,7 +221,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post() { @@ -244,8 +272,33 @@ public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_Post() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -301,7 +354,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -319,7 +372,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,body=DiscoverSolutionRequest}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -357,12 +410,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -379,15 +432,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, body=DiscoverSolutionRequest }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, body=DiscoverSolutionRequest }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -397,12 +450,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -414,9 +467,33 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // nested-array / value / - WriteObject((await response).Value, true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded.cs index 73eed045717e..d2efe5f0d945 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Solution discovery using natural language processing. @@ -13,12 +15,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Post=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -35,7 +38,19 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Discover NLP request. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest _discoverSolutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest _discoverSolutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpRequest(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Additional information in the form of a string. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Additional information in the form of a string.")] @@ -53,6 +68,9 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -66,6 +84,9 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -103,7 +124,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -133,15 +154,15 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE public string ResourceId { get => _discoverSolutionRequestBody.ResourceId ?? null; set => _discoverSolutionRequestBody.ResourceId = value; } /// - /// Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP + /// Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP /// Service Id is the GUID which can be found under name field in Services List response /// - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response")] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, - Description = @"Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response", + Description = @"Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response", SerializedName = @"serviceId", PossibleTypes = new [] { typeof(string) })] public string ServiceId { get => _discoverSolutionRequestBody.ServiceId ?? null; set => _discoverSolutionRequestBody.ServiceId = value; } @@ -160,7 +181,8 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.DefaultInfo( Name = @"", Description =@"", - Script = @"(Get-AzContext).Subscription.Id")] + Script = @"(Get-AzContext).Subscription.Id", + SetCondition = @"")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } @@ -169,24 +191,24 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostE /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -209,6 +231,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -230,7 +257,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet + /// Initializes a new instance of the cmdlet /// class. /// public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded() @@ -282,8 +309,33 @@ public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -339,7 +391,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -357,7 +409,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,body=_discoverSolutionRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -395,12 +447,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -417,15 +469,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, body=_discoverSolutionRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, body=_discoverSolutionRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -435,12 +487,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -452,9 +504,33 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // nested-array / value / - WriteObject((await response).Value, true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath.cs new file mode 100644 index 000000000000..b65940a2ff21 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath.cs @@ -0,0 +1,503 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// Solution discovery using natural language processing. + /// + /// [OpenAPI] Post=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Post operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Post operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Post operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. The value must be an UUID. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription. The value must be an UUID.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription. The value must be an UUID.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id", + SetCondition = @"")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonFilePath() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DiscoverySolutionNlpSubscriptionScopePost' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DiscoverySolutionNlpSubscriptionScopePostViaJsonString(SubscriptionId, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); + // response should be returning an array of some kind. +Pageable + // nested-array / value / + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString.cs similarity index 77% rename from generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString.cs index 0da39ce9a0c4..afb83c899e91 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString.cs @@ -6,19 +6,23 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Solution discovery using natural language processing. /// /// [OpenAPI] Post=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions" /// - [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource))] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] - public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -34,25 +38,26 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); - /// Discover NLP request. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest _discoverSolutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpRequest(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); - /// Additional information in the form of a string. - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Additional information in the form of a string.")] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Additional information in the form of a string.", - SerializedName = @"additionalContext", - PossibleTypes = new [] { typeof(string) })] - public string AdditionalContext { get => _discoverSolutionRequestBody.AdditionalContext ?? null; set => _discoverSolutionRequestBody.AdditionalContext = value; } + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -66,6 +71,9 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -78,27 +86,21 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; - - /// Identity Parameter - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } - /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } - /// Describe the issue with the affected resource. - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Describe the issue with the affected resource.")] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Post operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Post operation")] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, + Required = true, ReadOnly = false, - Description = @"Describe the issue with the affected resource.", - SerializedName = @"issueSummary", + Description = @"Json string supplied to the Post operation", + SerializedName = @"JsonString", PossibleTypes = new [] { typeof(string) })] - public string IssueSummary { get => _discoverSolutionRequestBody.IssueSummary ?? null; set => _discoverSolutionRequestBody.IssueSummary = value; } + public string JsonString { get => this._jsonString; set => this._jsonString = value; } /// /// cancellation delegate. Stops the cmdlet when called. @@ -111,7 +113,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -129,54 +131,48 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } - /// Provide resourceId of affected resource - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Provide resourceId of affected resource")] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Provide resourceId of affected resource", - SerializedName = @"resourceId", - PossibleTypes = new [] { typeof(string) })] - public string ResourceId { get => _discoverSolutionRequestBody.ResourceId ?? null; set => _discoverSolutionRequestBody.ResourceId = value; } + /// Backing field for property. + private string _subscriptionId; - /// - /// Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP - /// Service Id is the GUID which can be found under name field in Services List response - /// - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response")] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + /// The ID of the target subscription. The value must be an UUID. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription. The value must be an UUID.")] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = false, + Required = true, ReadOnly = false, - Description = @"Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response", - SerializedName = @"serviceId", + Description = @"The ID of the target subscription. The value must be an UUID.", + SerializedName = @"subscriptionId", PossibleTypes = new [] { typeof(string) })] - public string ServiceId { get => _discoverSolutionRequestBody.ServiceId ?? null; set => _discoverSolutionRequestBody.ServiceId = value; } + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id", + SetCondition = @"")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -199,6 +195,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -220,10 +221,10 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. /// - public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpanded() + public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaJsonString() { } @@ -272,8 +273,33 @@ public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentityExpa WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -329,7 +355,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -342,24 +368,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - if (InputObject?.Id != null) - { - await this.Client.DiscoverySolutionNlpSubscriptionScopePostViaIdentity(InputObject.Id, _discoverSolutionRequestBody, onOk, onDefault, this, Pipeline); - } - else - { - // try to call with PATH parameters from Input Object - if (null == InputObject.SubscriptionId) - { - ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); - } - await this.Client.DiscoverySolutionNlpSubscriptionScopePost(InputObject.SubscriptionId ?? null, _discoverSolutionRequestBody, onOk, onDefault, this, Pipeline); - } + await this.Client.DiscoverySolutionNlpSubscriptionScopePostViaJsonString(SubscriptionId, _jsonString, onOk, onDefault, this, Pipeline); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_discoverSolutionRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -397,12 +411,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -419,15 +433,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_discoverSolutionRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_discoverSolutionRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -437,12 +451,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -454,9 +468,33 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // nested-array / value / - WriteObject((await response).Value, true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post.cs index a5b6a52e0ae7..fdb01f9dec46 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Solution discovery using natural language processing. @@ -13,12 +15,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Post=>POST:"/providers/Microsoft.Help/discoverSolutions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpTenantScope_Post", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -34,11 +37,26 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post : glob /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -53,7 +71,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post : glob public global::System.Management.Automation.PSObject DefaultProfile { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest _discoverSolutionRequest; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest _discoverSolutionRequest; /// Discover NLP request. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Discover NLP request.", ValueFromPipeline = true)] @@ -62,8 +80,12 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post : glob ReadOnly = false, Description = @"Discover NLP request.", SerializedName = @"discoverSolutionRequest", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest DiscoverSolutionRequest { get => this._discoverSolutionRequest; set => this._discoverSolutionRequest = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest DiscoverSolutionRequest { get => this._discoverSolutionRequest; set => this._discoverSolutionRequest = value; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] @@ -91,7 +113,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post : glob /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -114,24 +136,24 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post : glob /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -154,6 +176,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -175,7 +202,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post() { @@ -226,8 +253,33 @@ public InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_Post() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -283,7 +335,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -301,7 +353,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DiscoverSolutionRequest}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -339,12 +391,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -361,15 +413,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DiscoverSolutionRequest }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DiscoverSolutionRequest }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -379,12 +431,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -396,9 +448,33 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // nested-array / value / - WriteObject((await response).Value, true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded.cs index d4b29e179cda..414a70b6be5d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Solution discovery using natural language processing. @@ -13,12 +15,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Post=>POST:"/providers/Microsoft.Help/discoverSolutions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -35,7 +38,19 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpande private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Discover NLP request. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest _discoverSolutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiscoveryNlpRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest _discoverSolutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiscoveryNlpRequest(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Additional information in the form of a string. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Additional information in the form of a string.")] @@ -53,6 +68,9 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpande [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -66,6 +84,9 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpande [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -103,7 +124,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpande /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -133,15 +154,15 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpande public string ResourceId { get => _discoverSolutionRequestBody.ResourceId ?? null; set => _discoverSolutionRequestBody.ResourceId = value; } /// - /// Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP + /// Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP /// Service Id is the GUID which can be found under name field in Services List response /// - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response")] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( Required = false, ReadOnly = false, - Description = @"Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/listtabs=HTTP Service Id is the GUID which can be found under name field in Services List response", + Description = @"Service Classification id for the resource. You can find required serviceId from Services API: https://learn.microsoft.com/rest/api/support/services/list?tabs=HTTP Service Id is the GUID which can be found under name field in Services List response", SerializedName = @"serviceId", PossibleTypes = new [] { typeof(string) })] public string ServiceId { get => _discoverSolutionRequestBody.ServiceId ?? null; set => _discoverSolutionRequestBody.ServiceId = value; } @@ -151,24 +172,24 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpande /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -191,6 +212,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -212,7 +238,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded() { @@ -263,8 +289,33 @@ public InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -320,7 +371,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -338,7 +389,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_discoverSolutionRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -376,12 +427,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -398,15 +449,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_discoverSolutionRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_discoverSolutionRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -416,12 +467,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -433,9 +484,33 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // nested-array / value / - WriteObject((await response).Value, true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath.cs new file mode 100644 index 000000000000..c04abae6ca94 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath.cs @@ -0,0 +1,484 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// Solution discovery using natural language processing. + /// + /// [OpenAPI] Post=>POST:"/providers/Microsoft.Help/discoverSolutions" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Post operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Post operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Post operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// + /// Initializes a new instance of the cmdlet + /// class. + /// + public InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonFilePath() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DiscoverySolutionNlpTenantScopePost' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DiscoverySolutionNlpTenantScopePostViaJsonString(_jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); + // response should be returning an array of some kind. +Pageable + // nested-array / value / + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString.cs similarity index 78% rename from generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity.cs rename to generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString.cs index 38e2964d51a4..4229a2be1ffb 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString.cs @@ -6,19 +6,23 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Solution discovery using natural language processing. /// - /// [OpenAPI] Post=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions" + /// [OpenAPI] Post=>POST:"/providers/Microsoft.Help/discoverSolutions" /// - [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource))] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Solution discovery using natural language processing.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/subscriptions/{subscriptionId}/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] - public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/providers/Microsoft.Help/discoverSolutions", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -34,11 +38,26 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -52,18 +71,8 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest _discoverSolutionRequest; - - /// Discover NLP request. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Discover NLP request.", ValueFromPipeline = true)] - [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( - Required = true, - ReadOnly = false, - Description = @"Discover NLP request.", - SerializedName = @"discoverSolutionRequest", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest DiscoverSolutionRequest { get => this._discoverSolutionRequest; set => this._discoverSolutionRequest = value; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] @@ -77,17 +86,22 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; - - /// Identity Parameter - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } - /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Post operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Post operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Post operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + /// /// cancellation delegate. Stops the cmdlet when called. /// @@ -99,7 +113,7 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -122,24 +136,24 @@ public partial class InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostV /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -162,6 +176,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -183,10 +202,10 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the - /// cmdlet class. + /// Initializes a new instance of the cmdlet + /// class. /// - public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity() + public InvokeAzSelfHelpDiscoverySolutionNlpTenantScope_PostViaJsonString() { } @@ -235,8 +254,33 @@ public InvokeAzSelfHelpDiscoverySolutionNlpSubscriptionScope_PostViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -253,7 +297,7 @@ protected override void ProcessRecord() try { // work - if (ShouldProcess($"Call remote 'DiscoverySolutionNlpSubscriptionScopePost' operation")) + if (ShouldProcess($"Call remote 'DiscoverySolutionNlpTenantScopePost' operation")) { using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) { @@ -292,7 +336,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -305,24 +349,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - if (InputObject?.Id != null) - { - await this.Client.DiscoverySolutionNlpSubscriptionScopePostViaIdentity(InputObject.Id, DiscoverSolutionRequest, onOk, onDefault, this, Pipeline); - } - else - { - // try to call with PATH parameters from Input Object - if (null == InputObject.SubscriptionId) - { - ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); - } - await this.Client.DiscoverySolutionNlpSubscriptionScopePost(InputObject.SubscriptionId ?? null, DiscoverSolutionRequest, onOk, onDefault, this, Pipeline); - } + await this.Client.DiscoverySolutionNlpTenantScopePostViaJsonString(_jsonString, onOk, onDefault, this, Pipeline); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DiscoverSolutionRequest}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -360,12 +392,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -382,15 +414,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DiscoverSolutionRequest }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DiscoverSolutionRequest }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -400,12 +432,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -417,9 +449,33 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse + var result = (await response); // response should be returning an array of some kind. +Pageable // nested-array / value / - WriteObject((await response).Value, true); + if (null != result.Value) + { + if (0 == _responseSize && 1 == result.Value.Count) + { + _firstResponse = result.Value[0]; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + var values = new System.Collections.Generic.List(); + foreach( var value in result.Value ) + { + values.Add(value.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(values, true); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_Warm.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_Warm.cs index 73a641d4016b..465b76ed4406 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_Warm.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_Warm.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -20,7 +22,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpWarmSolutionUp_Warm : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_Warm : global::System.Manage /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_Warm : global::System.Manage [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -87,7 +108,7 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_Warm : global::System.Manage /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -136,7 +157,7 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_Warm : global::System.Manage public string SolutionResourceName { get => this._solutionResourceName; set => this._solutionResourceName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody; /// Solution WarmUpRequest body [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution WarmUpRequest body", ValueFromPipeline = true)] @@ -145,20 +166,21 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_Warm : global::System.Manage ReadOnly = false, Description = @"Solution WarmUpRequest body", SerializedName = @"solutionWarmUpRequestBody", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody SolutionWarmUpRequestBody { get => this._solutionWarmUpRequestBody; set => this._solutionWarmUpRequestBody = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody SolutionWarmUpRequestBody { get => this._solutionWarmUpRequestBody; set => this._solutionWarmUpRequestBody = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -191,6 +213,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -212,7 +239,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpWarmSolutionUp_Warm() { @@ -263,8 +290,33 @@ public InvokeAzSelfHelpWarmSolutionUp_Warm() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -320,7 +372,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -338,7 +390,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SolutionResourceName=SolutionResourceName,body=SolutionWarmUpRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SolutionResourceName=SolutionResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -376,12 +428,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -398,15 +450,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SolutionResourceName=SolutionResourceName, body=SolutionWarmUpRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SolutionResourceName=SolutionResourceName, body=SolutionWarmUpRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmExpanded.cs index dbbe05e644b9..0029a806bf3e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmExpanded.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -20,7 +22,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpWarmSolutionUp_WarmExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,14 +39,29 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmExpanded : global::Syste /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Solution WarmUpRequest body - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBody(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBody(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -57,6 +75,9 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmExpanded : global::Syste [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -89,8 +110,8 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmExpanded : global::Syste ReadOnly = false, Description = @"Dictionary of ", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters Parameter { get => _solutionWarmUpRequestBody.Parameter ?? null /* object */; set => _solutionWarmUpRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters Parameter { get => _solutionWarmUpRequestBody.Parameter ?? null /* object */; set => _solutionWarmUpRequestBody.Parameter = value; } /// /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. @@ -102,7 +123,7 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmExpanded : global::Syste /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -155,12 +176,12 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmExpanded : global::Syste /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -193,6 +214,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -214,7 +240,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpWarmSolutionUp_WarmExpanded() { @@ -265,8 +291,33 @@ public InvokeAzSelfHelpWarmSolutionUp_WarmExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -322,7 +373,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -340,7 +391,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SolutionResourceName=SolutionResourceName,body=_solutionWarmUpRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SolutionResourceName=SolutionResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -378,12 +429,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -400,15 +451,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SolutionResourceName=SolutionResourceName, body=_solutionWarmUpRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SolutionResourceName=SolutionResourceName, body=_solutionWarmUpRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity.cs index be887a1bdf43..186fef86e93b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -20,7 +22,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,11 +39,26 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity : global::Sy /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -54,6 +72,9 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity : global::Sy [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -95,7 +116,7 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity : global::Sy /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -114,7 +135,7 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity : global::Sy public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody; + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody; /// Solution WarmUpRequest body [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution WarmUpRequest body", ValueFromPipeline = true)] @@ -123,20 +144,21 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity : global::Sy ReadOnly = false, Description = @"Solution WarmUpRequest body", SerializedName = @"solutionWarmUpRequestBody", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody SolutionWarmUpRequestBody { get => this._solutionWarmUpRequestBody; set => this._solutionWarmUpRequestBody = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody SolutionWarmUpRequestBody { get => this._solutionWarmUpRequestBody; set => this._solutionWarmUpRequestBody = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -169,6 +191,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -190,7 +217,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity() { @@ -241,8 +268,33 @@ public InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -298,7 +350,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -332,7 +384,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=SolutionWarmUpRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -370,12 +422,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -392,15 +444,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=SolutionWarmUpRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=SolutionWarmUpRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded.cs index c5333f8b925b..eeb5b29dfc27 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -20,7 +22,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", ApiVersion = "2024-03-01-preview")] public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,14 +39,29 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded : gl /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Solution WarmUpRequest body - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionWarmUpRequestBody(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody _solutionWarmUpRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionWarmUpRequestBody(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -57,6 +75,9 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded : gl [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -97,8 +118,8 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded : gl ReadOnly = false, Description = @"Dictionary of ", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters Parameter { get => _solutionWarmUpRequestBody.Parameter ?? null /* object */; set => _solutionWarmUpRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters Parameter { get => _solutionWarmUpRequestBody.Parameter ?? null /* object */; set => _solutionWarmUpRequestBody.Parameter = value; } /// /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. @@ -110,7 +131,7 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded : gl /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -133,12 +154,12 @@ public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded : gl /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -171,6 +192,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -192,7 +218,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded() { @@ -243,8 +269,33 @@ public InvokeAzSelfHelpWarmSolutionUp_WarmViaIdentityExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -300,7 +351,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -334,7 +385,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_solutionWarmUpRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -372,12 +423,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -394,15 +445,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_solutionWarmUpRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_solutionWarmUpRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonFilePath.cs new file mode 100644 index 000000000000..63161c41d273 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonFilePath.cs @@ -0,0 +1,495 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// Warm up the solution resource by preloading asynchronous diagnostics results into cache + /// + /// + /// [OpenAPI] WarmUp=>POST:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpWarmSolutionUp_WarmViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Warm up the solution resource by preloading asynchronous diagnostics results into cache")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Warm operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Warm operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Warm operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// Backing field for property. + private string _solutionResourceName; + + /// Solution resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Solution resource Name.", + SerializedName = @"solutionResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SolutionResourceName { get => this._solutionResourceName; set => this._solutionResourceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonFilePath() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionWarmUp' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SolutionWarmUpViaJsonString(Scope, SolutionResourceName, _jsonString, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SolutionResourceName=SolutionResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonString.cs new file mode 100644 index 000000000000..f7d6d252cdaf --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonString.cs @@ -0,0 +1,493 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// Warm up the solution resource by preloading asynchronous diagnostics results into cache + /// + /// + /// [OpenAPI] WarmUp=>POST:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzSelfHelpWarmSolutionUp_WarmViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Warm up the solution resource by preloading asynchronous diagnostics results into cache")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}/warmup", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Warm operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Warm operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Warm operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// Backing field for property. + private string _solutionResourceName; + + /// Solution resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Solution resource Name.", + SerializedName = @"solutionResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SolutionResourceName { get => this._solutionResourceName; set => this._solutionResourceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public InvokeAzSelfHelpWarmSolutionUp_WarmViaJsonString() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionWarmUp' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SolutionWarmUpViaJsonString(Scope, SolutionResourceName, _jsonString, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SolutionResourceName=SolutionResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateExpanded.cs index 9a98acd71feb..7ba22a2c6f1e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateExpanded.cs @@ -6,10 +6,12 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// - /// Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed /// via ‘additionalParameters’ as an input to Diagnostics API. @@ -18,12 +20,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpDiagnostic_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Creates a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}", ApiVersion = "2024-03-01-preview")] public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -40,7 +43,19 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Diagnostic resource - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource _diagnosticResourceRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.DiagnosticResource(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource _diagnosticResourceRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -52,6 +67,9 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -65,6 +83,9 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics /// results @@ -77,8 +98,8 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man ReadOnly = false, Description = @"Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results", SerializedName = @"globalParameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => _diagnosticResourceRequestBody.GlobalParameter ?? null /* object */; set => _diagnosticResourceRequestBody.GlobalParameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => _diagnosticResourceRequestBody.GlobalParameter ?? null /* object */; set => _diagnosticResourceRequestBody.GlobalParameter = value; } /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] @@ -101,8 +122,8 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man ReadOnly = false, Description = @"SolutionIds that are needed to be invoked.", SerializedName = @"insights", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[] Insight { get => _diagnosticResourceRequestBody.Insight ?? null /* arrayOf */; set => _diagnosticResourceRequestBody.Insight = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[] Insight { get => _diagnosticResourceRequestBody.Insight?.ToArray() ?? null /* fixedArrayOf */; set => _diagnosticResourceRequestBody.Insight = (value != null ? new System.Collections.Generic.List(value) : null); } /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } @@ -126,7 +147,7 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -180,24 +201,24 @@ public partial class NewAzSelfHelpDiagnostic_CreateExpanded : global::System.Man /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -243,6 +264,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpDiagnost /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -307,11 +333,36 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: { + var data = messageData(); if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) { - var data = messageData(); if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) { var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); @@ -323,10 +374,26 @@ protected override void EndProcessing() return; } } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } break; } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -336,7 +403,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public NewAzSelfHelpDiagnostic_CreateExpanded() { @@ -402,7 +469,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -415,12 +482,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.DiagnosticsCreate(Scope, SResourceName, _diagnosticResourceRequestBody, onOk, onDefault, this, Pipeline); + await this.Client.DiagnosticsCreate(Scope, SResourceName, _diagnosticResourceRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName,body=_diagnosticResourceRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -458,12 +525,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -480,15 +547,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName, body=_diagnosticResourceRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName, body=_diagnosticResourceRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -498,12 +565,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -515,8 +582,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded.cs new file mode 100644 index 000000000000..c785cb7a57ac --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded.cs @@ -0,0 +1,599 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpDiagnostic_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}", ApiVersion = "2024-03-01-preview")] + public partial class NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Diagnostic resource + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource _diagnosticResourceRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.DiagnosticResource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// + /// Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics + /// results + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Global parameters is an optional map which can be used to add key and value to request body to improve the diagnostics results", + SerializedName = @"globalParameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters GlobalParameter { get => _diagnosticResourceRequestBody.GlobalParameter ?? null /* object */; set => _diagnosticResourceRequestBody.GlobalParameter = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// SolutionIds that are needed to be invoked. + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "SolutionIds that are needed to be invoked.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"SolutionIds that are needed to be invoked.", + SerializedName = @"insights", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[] Insight { get => _diagnosticResourceRequestBody.Insight?.ToArray() ?? null /* fixedArrayOf */; set => _diagnosticResourceRequestBody.Insight = (value != null ? new System.Collections.Generic.List(value) : null); } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded Clone() + { + var clone = new NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone._diagnosticResourceRequestBody = this._diagnosticResourceRequestBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpDiagnostic_CreateViaIdentityExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DiagnosticsCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.DiagnosticsCreateViaIdentity(InputObject.Id, _diagnosticResourceRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.Scope) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Scope"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.DiagnosticsResourceName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.DiagnosticsResourceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.DiagnosticsCreate(InputObject.Scope ?? null, InputObject.DiagnosticsResourceName ?? null, _diagnosticResourceRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonFilePath.cs new file mode 100644 index 000000000000..fc6c2fda154d --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonFilePath.cs @@ -0,0 +1,594 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpDiagnostic_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpDiagnostic_CreateViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Create operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _sResourceName; + + /// Unique resource name for insight resources + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Unique resource name for insight resources")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Unique resource name for insight resources", + SerializedName = @"diagnosticsResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("DiagnosticsResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SResourceName { get => this._sResourceName; set => this._sResourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpDiagnostic_CreateViaJsonFilePath + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpDiagnostic_CreateViaJsonFilePath Clone() + { + var clone = new NewAzSelfHelpDiagnostic_CreateViaJsonFilePath(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.SResourceName = this.SResourceName; + clone.JsonFilePath = this.JsonFilePath; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpDiagnostic_CreateViaJsonFilePath() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DiagnosticsCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DiagnosticsCreateViaJsonString(Scope, SResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonString.cs new file mode 100644 index 000000000000..ff7cf7a10ae9 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpDiagnostic_CreateViaJsonString.cs @@ -0,0 +1,592 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics + /// are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and + /// the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘additionalParameters’ as an input to Diagnostics API. + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpDiagnostic_CreateViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a diagnostic for the specific resource using solutionId and requiredInputs* from discovery solutions.
Diagnostics are powerful solutions that access product resources or other relevant data and provide the root cause of the issue and the steps to address the issue.

Note: ‘requiredInputs’ from Discovery solutions response must be passed via ‘additionalParameters’ as an input to Diagnostics API.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/diagnostics/{diagnosticsResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpDiagnostic_CreateViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Create operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _sResourceName; + + /// Unique resource name for insight resources + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Unique resource name for insight resources")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Unique resource name for insight resources", + SerializedName = @"diagnosticsResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("DiagnosticsResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SResourceName { get => this._sResourceName; set => this._sResourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpDiagnostic_CreateViaJsonString + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpDiagnostic_CreateViaJsonString Clone() + { + var clone = new NewAzSelfHelpDiagnostic_CreateViaJsonString(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.SResourceName = this.SResourceName; + clone.JsonString = this.JsonString; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpDiagnostic_CreateViaJsonString() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DiagnosticsCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DiagnosticsCreateViaJsonString(Scope, SResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateExpanded.cs index 7f5219add7b5..7df60d6a823e 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateExpanded.cs @@ -6,10 +6,12 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// - /// Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
@@ -18,12 +20,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSimplifiedSolution_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Creates a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}", ApiVersion = "2024-03-01-preview")] public partial class NewAzSelfHelpSimplifiedSolution_CreateExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -39,8 +42,20 @@ public partial class NewAzSelfHelpSimplifiedSolution_CreateExpanded : global::Sy ///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Simplified Solutions response. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource _simplifiedSolutionsRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SimplifiedSolutionsResource(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource _simplifiedSolutionsRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -52,6 +67,9 @@ public partial class NewAzSelfHelpSimplifiedSolution_CreateExpanded : global::Sy [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -65,6 +83,9 @@ public partial class NewAzSelfHelpSimplifiedSolution_CreateExpanded : global::Sy [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -105,13 +126,13 @@ public partial class NewAzSelfHelpSimplifiedSolution_CreateExpanded : global::Sy ReadOnly = false, Description = @"Client input parameters to run Simplified Solutions", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => _simplifiedSolutionsRequestBody.Parameter ?? null /* object */; set => _simplifiedSolutionsRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => _simplifiedSolutionsRequestBody.Parameter ?? null /* object */; set => _simplifiedSolutionsRequestBody.Parameter = value; } /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -176,24 +197,24 @@ public partial class NewAzSelfHelpSimplifiedSolution_CreateExpanded : global::Sy /// happens on that response. Implement this method in a partial class to enable this behavior ///
/// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -239,6 +260,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSimplifi /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -303,11 +329,36 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: { + var data = messageData(); if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) { - var data = messageData(); if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) { var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); @@ -319,10 +370,26 @@ protected override void EndProcessing() return; } } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } break; } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -332,7 +399,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public NewAzSelfHelpSimplifiedSolution_CreateExpanded() { @@ -398,7 +465,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -411,12 +478,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.SimplifiedSolutionsCreate(Scope, SResourceName, _simplifiedSolutionsRequestBody, onOk, onDefault, this, Pipeline); + await this.Client.SimplifiedSolutionsCreate(Scope, SResourceName, _simplifiedSolutionsRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName,body=_simplifiedSolutionsRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -454,12 +521,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -476,15 +543,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName, body=_simplifiedSolutionsRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, SResourceName=SResourceName, body=_simplifiedSolutionsRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -494,12 +561,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -511,8 +578,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded.cs new file mode 100644 index 000000000000..eacb17538ab7 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded.cs @@ -0,0 +1,597 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}", ApiVersion = "2024-03-01-preview")] + public partial class NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Simplified Solutions response. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource _simplifiedSolutionsRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SimplifiedSolutionsResource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// Client input parameters to run Simplified Solutions + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Client input parameters to run Simplified Solutions")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Client input parameters to run Simplified Solutions", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters Parameter { get => _simplifiedSolutionsRequestBody.Parameter ?? null /* object */; set => _simplifiedSolutionsRequestBody.Parameter = value; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Solution Id to identify single Simplified Solution. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Solution Id to identify single Simplified Solution.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Solution Id to identify single Simplified Solution.", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + public string SolutionId { get => _simplifiedSolutionsRequestBody.SolutionId ?? null; set => _simplifiedSolutionsRequestBody.SolutionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// + /// a duplicate instance of NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded Clone() + { + var clone = new NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone._simplifiedSolutionsRequestBody = this._simplifiedSolutionsRequestBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpSimplifiedSolution_CreateViaIdentityExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SimplifiedSolutionsCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.SimplifiedSolutionsCreateViaIdentity(InputObject.Id, _simplifiedSolutionsRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.Scope) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Scope"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SimplifiedSolutionsResourceName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SimplifiedSolutionsResourceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.SimplifiedSolutionsCreate(InputObject.Scope ?? null, InputObject.SimplifiedSolutionsResourceName ?? null, _simplifiedSolutionsRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath.cs new file mode 100644 index 000000000000..df2bc149c0ac --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath.cs @@ -0,0 +1,594 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSimplifiedSolution_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Create operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _sResourceName; + + /// Simplified Solutions Resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Simplified Solutions Resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Simplified Solutions Resource Name.", + SerializedName = @"simplifiedSolutionsResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("SimplifiedSolutionsResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SResourceName { get => this._sResourceName; set => this._sResourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath Clone() + { + var clone = new NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.SResourceName = this.SResourceName; + clone.JsonFilePath = this.JsonFilePath; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpSimplifiedSolution_CreateViaJsonFilePath() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SimplifiedSolutionsCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SimplifiedSolutionsCreateViaJsonString(Scope, SResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonString.cs new file mode 100644 index 000000000000..aab2c87f2e51 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSimplifiedSolution_CreateViaJsonString.cs @@ -0,0 +1,592 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ + /// from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might + /// fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions + /// response must be passed via ‘parameters’ in the request body of simplified Solutions API.
+ ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSimplifiedSolution_CreateViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a simplified Solutions for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions. In the absence of the ‘Parameters’ it is likely that some of the simplified Solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of simplified Solutions API.
")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/simplifiedSolutions/{simplifiedSolutionsResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpSimplifiedSolution_CreateViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Create operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _sResourceName; + + /// Simplified Solutions Resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Simplified Solutions Resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Simplified Solutions Resource Name.", + SerializedName = @"simplifiedSolutionsResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("SimplifiedSolutionsResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string SResourceName { get => this._sResourceName; set => this._sResourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpSimplifiedSolution_CreateViaJsonString + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSimplifiedSolution_CreateViaJsonString Clone() + { + var clone = new NewAzSelfHelpSimplifiedSolution_CreateViaJsonString(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.SResourceName = this.SResourceName; + clone.JsonString = this.JsonString; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpSimplifiedSolution_CreateViaJsonString() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SimplifiedSolutionsCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SimplifiedSolutionsCreateViaJsonString(Scope, SResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,SResourceName=SResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateExpanded.cs index 17351a561664..53ca89ed9444 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateExpanded.cs @@ -6,10 +6,12 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// - /// Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional @@ -26,12 +28,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSolution_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Creates a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] public partial class NewAzSelfHelpSolution_CreateExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -47,8 +50,20 @@ public partial class NewAzSelfHelpSolution_CreateExpanded : global::System.Manag ///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Solution response. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource _solutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionResource(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource _solutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -60,6 +75,9 @@ public partial class NewAzSelfHelpSolution_CreateExpanded : global::System.Manag [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -73,6 +91,9 @@ public partial class NewAzSelfHelpSolution_CreateExpanded : global::System.Manag [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -113,13 +134,13 @@ public partial class NewAzSelfHelpSolution_CreateExpanded : global::System.Manag ReadOnly = false, Description = @"Client input parameters to run Solution", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get => _solutionRequestBody.Parameter ?? null /* object */; set => _solutionRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => _solutionRequestBody.Parameter ?? null /* object */; set => _solutionRequestBody.Parameter = value; } /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -177,32 +198,32 @@ public partial class NewAzSelfHelpSolution_CreateExpanded : global::System.Manag ReadOnly = false, Description = @"Solution request trigger criteria", SerializedName = @"triggerCriteria", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get => _solutionRequestBody.TriggerCriterion ?? null /* arrayOf */; set => _solutionRequestBody.TriggerCriterion = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] TriggerCriterion { get => _solutionRequestBody.TriggerCriterion?.ToArray() ?? null /* fixedArrayOf */; set => _solutionRequestBody.TriggerCriterion = (value != null ? new System.Collections.Generic.List(value) : null); } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -248,6 +269,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSolution /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -312,11 +338,36 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: { + var data = messageData(); if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) { - var data = messageData(); if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) { var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); @@ -328,10 +379,26 @@ protected override void EndProcessing() return; } } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } break; } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -341,7 +408,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public NewAzSelfHelpSolution_CreateExpanded() { @@ -407,7 +474,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -420,12 +487,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.SolutionCreate(Scope, ResourceName, _solutionRequestBody, onOk, onDefault, this, Pipeline); + await this.Client.SolutionCreate(Scope, ResourceName, _solutionRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName,body=_solutionRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -463,12 +530,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -485,15 +552,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, ResourceName=ResourceName, body=_solutionRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, ResourceName=ResourceName, body=_solutionRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -503,12 +570,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -520,8 +587,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaIdentityExpanded.cs new file mode 100644 index 000000000000..69e2f7b85732 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaIdentityExpanded.cs @@ -0,0 +1,604 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSolution_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] + public partial class NewAzSelfHelpSolution_CreateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Solution response. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource _solutionRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionResource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// Client input parameters to run Solution + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Client input parameters to run Solution")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Client input parameters to run Solution", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => _solutionRequestBody.Parameter ?? null /* object */; set => _solutionRequestBody.Parameter = value; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Solution request trigger criteria + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Solution request trigger criteria")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Solution request trigger criteria", + SerializedName = @"triggerCriteria", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] TriggerCriterion { get => _solutionRequestBody.TriggerCriterion?.ToArray() ?? null /* fixedArrayOf */; set => _solutionRequestBody.TriggerCriterion = (value != null ? new System.Collections.Generic.List(value) : null); } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpSolution_CreateViaIdentityExpanded + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSolution_CreateViaIdentityExpanded Clone() + { + var clone = new NewAzSelfHelpSolution_CreateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone._solutionRequestBody = this._solutionRequestBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpSolution_CreateViaIdentityExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.SolutionCreateViaIdentity(InputObject.Id, _solutionRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.Scope) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Scope"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SolutionResourceName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SolutionResourceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.SolutionCreate(InputObject.Scope ?? null, InputObject.SolutionResourceName ?? null, _solutionRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonFilePath.cs new file mode 100644 index 000000000000..56f6b18f9a6f --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonFilePath.cs @@ -0,0 +1,602 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSolution_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpSolution_CreateViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Create operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceName; + + /// Solution resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Solution resource Name.", + SerializedName = @"solutionResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("SolutionResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string ResourceName { get => this._resourceName; set => this._resourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpSolution_CreateViaJsonFilePath + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSolution_CreateViaJsonFilePath Clone() + { + var clone = new NewAzSelfHelpSolution_CreateViaJsonFilePath(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.ResourceName = this.ResourceName; + clone.JsonFilePath = this.JsonFilePath; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpSolution_CreateViaJsonFilePath() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SolutionCreateViaJsonString(Scope, ResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonString.cs new file mode 100644 index 000000000000..0accc06302d7 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpSolution_CreateViaJsonString.cs @@ -0,0 +1,600 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from + /// discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully + /// curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) + /// dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional + /// video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. + /// All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. + /// Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. + /// In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might + /// see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed + /// via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the + /// same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response + /// is the same as ‘properties.parameters’ in the request for Troubleshooters + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpSolution_CreateViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create a solution for the specific Azure resource or subscription using the inputs ‘solutionId and requiredInputs’ from discovery solutions.
Azure solutions comprise a comprehensive library of self-help resources that have been thoughtfully curated by Azure engineers to aid customers in resolving typical troubleshooting issues. These solutions encompass (1.) dynamic and context-aware diagnostics, guided troubleshooting wizards, and data visualizations, (2.) rich instructional video tutorials and illustrative diagrams and images, and (3.) thoughtfully assembled textual troubleshooting instructions. All these components are seamlessly converged into unified solutions tailored to address a specific support problem area. Each solution type may require one or more ‘requiredParameters’ that are required to execute the individual solution component. In the absence of the ‘requiredParameters’ it is likely that some of the solutions might fail execution, and you might see an empty response.

Note:
1. ‘requiredInputs’ from Discovery solutions response must be passed via ‘parameters’ in the request body of Solutions API.
2. ‘requiredParameters’ from the Solutions response is the same as ‘ additionalParameters’ in the request for diagnostics
3. ‘requiredParameters’ from the Solutions response is the same as ‘properties.parameters’ in the request for Troubleshooters")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpSolution_CreateViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Create operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceName; + + /// Solution resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Solution resource Name.", + SerializedName = @"solutionResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("SolutionResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string ResourceName { get => this._resourceName; set => this._resourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzSelfHelpSolution_CreateViaJsonString + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.NewAzSelfHelpSolution_CreateViaJsonString Clone() + { + var clone = new NewAzSelfHelpSolution_CreateViaJsonString(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.ResourceName = this.ResourceName; + clone.JsonString = this.JsonString; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpSolution_CreateViaJsonString() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionCreate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SolutionCreateViaJsonString(Scope, ResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateExpanded.cs index b697f37ce05c..30c20bc772cf 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateExpanded.cs @@ -6,10 +6,12 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// - /// Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows @@ -21,12 +23,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpTroubleshooter_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Creates the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", ApiVersion = "2024-03-01-preview")] public partial class NewAzSelfHelpTroubleshooter_CreateExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -43,13 +46,28 @@ public partial class NewAzSelfHelpTroubleshooter_CreateExpanded : global::System private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Troubleshooter response. - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource _createTroubleshooterRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.TroubleshooterResource(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource _createTroubleshooterRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -63,6 +81,9 @@ public partial class NewAzSelfHelpTroubleshooter_CreateExpanded : global::System [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -110,13 +131,13 @@ public partial class NewAzSelfHelpTroubleshooter_CreateExpanded : global::System ReadOnly = false, Description = @"Client input parameters to run Troubleshooter Resource", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters Parameter { get => _createTroubleshooterRequestBody.Parameter ?? null /* object */; set => _createTroubleshooterRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get => _createTroubleshooterRequestBody.Parameter ?? null /* object */; set => _createTroubleshooterRequestBody.Parameter = value; } /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -166,36 +187,36 @@ public partial class NewAzSelfHelpTroubleshooter_CreateExpanded : global::System /// happens on that response. Implement this method in a partial class to enable this behavior ///
/// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -218,6 +239,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -282,8 +308,33 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -293,7 +344,7 @@ protected override void EndProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public NewAzSelfHelpTroubleshooter_CreateExpanded() { @@ -347,7 +398,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -360,12 +411,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.TroubleshootersCreate(Scope, Name, _createTroubleshooterRequestBody, onOk, onCreated, onDefault, this, Pipeline); + await this.Client.TroubleshootersCreate(Scope, Name, _createTroubleshooterRequestBody, onOk, onCreated, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=_createTroubleshooterRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -401,12 +452,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -418,8 +469,26 @@ protected override void StopProcessing() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } @@ -427,12 +496,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -449,15 +518,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_createTroubleshooterRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_createTroubleshooterRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -467,12 +536,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -484,8 +553,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaIdentityExpanded.cs new file mode 100644 index 000000000000..899d93d5ee79 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaIdentityExpanded.cs @@ -0,0 +1,572 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpTroubleshooter_CreateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", ApiVersion = "2024-03-01-preview")] + public partial class NewAzSelfHelpTroubleshooter_CreateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Troubleshooter response. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource _createTroubleshooterRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.TroubleshooterResource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Client input parameters to run Troubleshooter Resource + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Client input parameters to run Troubleshooter Resource")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Client input parameters to run Troubleshooter Resource", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters Parameter { get => _createTroubleshooterRequestBody.Parameter ?? null /* object */; set => _createTroubleshooterRequestBody.Parameter = value; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Solution Id to identify single troubleshooter. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Solution Id to identify single troubleshooter.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Solution Id to identify single troubleshooter.", + SerializedName = @"solutionId", + PossibleTypes = new [] { typeof(string) })] + public string SolutionId { get => _createTroubleshooterRequestBody.SolutionId ?? null; set => _createTroubleshooterRequestBody.SolutionId = value; } + + /// + /// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// /// Determines if the rest of the onCreated method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpTroubleshooter_CreateViaIdentityExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'TroubleshootersCreate' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.TroubleshootersCreateViaIdentity(InputObject.Id, _createTroubleshooterRequestBody, onOk, onCreated, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.Scope) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Scope"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.TroubleshooterName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.TroubleshooterName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.TroubleshootersCreate(InputObject.Scope ?? null, InputObject.TroubleshooterName ?? null, _createTroubleshooterRequestBody, onOk, onCreated, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeCreate); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// a delegate that is called when the remote service returns 201 (Created). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnCreated(responseMessage, response, ref _returnNow); + // if overrideOnCreated has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onCreated - response for 201 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonFilePath.cs new file mode 100644 index 000000000000..6ff89dc40ff8 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonFilePath.cs @@ -0,0 +1,569 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpTroubleshooter_CreateViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpTroubleshooter_CreateViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Create operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Troubleshooter resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Troubleshooter resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Troubleshooter resource Name.", + SerializedName = @"troubleshooterName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("TroubleshooterName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// /// Determines if the rest of the onCreated method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpTroubleshooter_CreateViaJsonFilePath() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'TroubleshootersCreate' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.TroubleshootersCreateViaJsonString(Scope, Name, _jsonString, onOk, onCreated, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// a delegate that is called when the remote service returns 201 (Created). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnCreated(responseMessage, response, ref _returnNow); + // if overrideOnCreated has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onCreated - response for 201 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonString.cs new file mode 100644 index 000000000000..fc424e5ec7c1 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/NewAzSelfHelpTroubleshooter_CreateViaJsonString.cs @@ -0,0 +1,567 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ + /// as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed + /// problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow + /// represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows + /// are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous + /// support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend + /// signals and customer manual selections. + ///
+ /// + /// [OpenAPI] Create=>PUT:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzSelfHelpTroubleshooter_CreateViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"create the specific troubleshooter action under a resource or subscription using the ‘solutionId’ and ‘properties.parameters’ as the trigger.
Azure Troubleshooters help with hard to classify issues, reducing the gap between customer observed problems and solutions by guiding the user effortlessly through the troubleshooting process. Each Troubleshooter flow represents a problem area within Azure and has a complex tree-like structure that addresses many root causes. These flows are prepared with the help of Subject Matter experts and customer support engineers by carefully considering previous support requests raised by customers. Troubleshooters terminate at a well curated solution based off of resource backend signals and customer manual selections.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class NewAzSelfHelpTroubleshooter_CreateViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Create operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Create operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Create operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Troubleshooter resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Troubleshooter resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Troubleshooter resource Name.", + SerializedName = @"troubleshooterName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("TroubleshooterName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// /// Determines if the rest of the onCreated method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public NewAzSelfHelpTroubleshooter_CreateViaJsonString() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'TroubleshootersCreate' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.TroubleshootersCreateViaJsonString(Scope, Name, _jsonString, onOk, onCreated, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// a delegate that is called when the remote service returns 201 (Created). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnCreated(responseMessage, response, ref _returnNow); + // if overrideOnCreated has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onCreated - response for 201 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_Restart.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_Restart.cs index 8ab99bc92914..7a081acb0827 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_Restart.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_Restart.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -16,12 +18,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Restart=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/restart" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Restart, @"AzSelfHelpTroubleshooter_Restart", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Restarts the troubleshooter API using applicable troubleshooter resource name as the input.
It returns new resource name which should be used in subsequent request. The old resource name is obsolete after this API is invoked.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/restart", ApiVersion = "2024-03-01-preview")] public partial class RestartAzSelfHelpTroubleshooter_Restart : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -37,11 +40,26 @@ public partial class RestartAzSelfHelpTroubleshooter_Restart : global::System.Ma ///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -55,6 +73,9 @@ public partial class RestartAzSelfHelpTroubleshooter_Restart : global::System.Ma [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -96,7 +117,7 @@ public partial class RestartAzSelfHelpTroubleshooter_Restart : global::System.Ma /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -135,24 +156,24 @@ public partial class RestartAzSelfHelpTroubleshooter_Restart : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -175,6 +196,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -239,8 +265,33 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -296,7 +347,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -314,7 +365,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -327,7 +378,7 @@ protected override void ProcessRecord() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public RestartAzSelfHelpTroubleshooter_Restart() { @@ -360,12 +411,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -382,15 +433,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -400,12 +451,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -417,8 +468,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_RestartViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_RestartViaIdentity.cs index 3ac8b3b97b17..996e9d827693 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_RestartViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/RestartAzSelfHelpTroubleshooter_RestartViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// @@ -16,12 +18,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets /// [OpenAPI] Restart=>POST:"/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/restart" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Restart, @"AzSelfHelpTroubleshooter_RestartViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse))] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Restarts the troubleshooter API using applicable troubleshooter resource name as the input.
It returns new resource name which should be used in subsequent request. The old resource name is obsolete after this API is invoked.")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/restart", ApiVersion = "2024-03-01-preview")] public partial class RestartAzSelfHelpTroubleshooter_RestartViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -37,11 +40,26 @@ public partial class RestartAzSelfHelpTroubleshooter_RestartViaIdentity : global ///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -55,6 +73,9 @@ public partial class RestartAzSelfHelpTroubleshooter_RestartViaIdentity : global [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -89,7 +110,7 @@ public partial class RestartAzSelfHelpTroubleshooter_RestartViaIdentity : global /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -112,24 +133,24 @@ public partial class RestartAzSelfHelpTroubleshooter_RestartViaIdentity : global /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -152,6 +173,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -216,8 +242,33 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -273,7 +324,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -307,7 +358,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -320,7 +371,7 @@ protected override void ProcessRecord() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public RestartAzSelfHelpTroubleshooter_RestartViaIdentity() { @@ -353,12 +404,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -375,7 +426,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -393,12 +444,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -410,8 +461,26 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_End.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_End.cs index c1163a536a20..3873eea8479a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_End.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_End.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Ends the troubleshooter action @@ -18,7 +20,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/end", ApiVersion = "2024-03-01-preview")] public partial class StopAzSelfHelpTroubleshooter_End : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -34,11 +37,26 @@ public partial class StopAzSelfHelpTroubleshooter_End : global::System.Managemen /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -52,6 +70,9 @@ public partial class StopAzSelfHelpTroubleshooter_End : global::System.Managemen [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -100,7 +121,7 @@ public partial class StopAzSelfHelpTroubleshooter_End : global::System.Managemen /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -139,12 +160,12 @@ public partial class StopAzSelfHelpTroubleshooter_End : global::System.Managemen /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -179,6 +200,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -243,8 +269,33 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -300,7 +351,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -318,7 +369,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -331,7 +382,7 @@ protected override void ProcessRecord() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public StopAzSelfHelpTroubleshooter_End() { @@ -364,12 +415,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -386,15 +437,15 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_EndViaIdentity.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_EndViaIdentity.cs index de1ac7bc5442..d9a31572ced9 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_EndViaIdentity.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/StopAzSelfHelpTroubleshooter_EndViaIdentity.cs @@ -6,6 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// Ends the troubleshooter action @@ -18,7 +20,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/troubleshooters/{troubleshooterName}/end", ApiVersion = "2024-03-01-preview")] public partial class StopAzSelfHelpTroubleshooter_EndViaIdentity : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -34,11 +37,26 @@ public partial class StopAzSelfHelpTroubleshooter_EndViaIdentity : global::Syste /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -52,6 +70,9 @@ public partial class StopAzSelfHelpTroubleshooter_EndViaIdentity : global::Syste [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -93,7 +114,7 @@ public partial class StopAzSelfHelpTroubleshooter_EndViaIdentity : global::Syste /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -116,12 +137,12 @@ public partial class StopAzSelfHelpTroubleshooter_EndViaIdentity : global::Syste /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -156,6 +177,11 @@ protected override void BeginProcessing() /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -220,8 +246,33 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -277,7 +328,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -311,7 +362,7 @@ protected override void ProcessRecord() } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -324,7 +375,7 @@ protected override void ProcessRecord() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public StopAzSelfHelpTroubleshooter_EndViaIdentity() { @@ -357,12 +408,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -379,7 +430,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateExpanded.cs index 037c71e91457..bc8ae1096987 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateExpanded.cs @@ -6,21 +6,24 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// - /// Update the requiredInputs or additional information needed to execute the solution + /// update the requiredInputs or additional information needed to execute the solution /// /// /// [OpenAPI] Update=>PATCH:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzSelfHelpSolution_UpdateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Update the requiredInputs or additional information needed to execute the solution ")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"update the requiredInputs or additional information needed to execute the solution ")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] public partial class UpdateAzSelfHelpSolution_UpdateExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,8 +39,20 @@ public partial class UpdateAzSelfHelpSolution_UpdateExpanded : global::System.Ma /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Solution PatchRequest body - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody _solutionPatchRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionPatchRequestBody(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody _solutionPatchRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionPatchRequestBody(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -49,6 +64,9 @@ public partial class UpdateAzSelfHelpSolution_UpdateExpanded : global::System.Ma [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -62,6 +80,9 @@ public partial class UpdateAzSelfHelpSolution_UpdateExpanded : global::System.Ma [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -102,13 +123,13 @@ public partial class UpdateAzSelfHelpSolution_UpdateExpanded : global::System.Ma ReadOnly = false, Description = @"Client input parameters to run Solution", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get => _solutionPatchRequestBody.Parameter ?? null /* object */; set => _solutionPatchRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => _solutionPatchRequestBody.Parameter ?? null /* object */; set => _solutionPatchRequestBody.Parameter = value; } /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -166,32 +187,32 @@ public partial class UpdateAzSelfHelpSolution_UpdateExpanded : global::System.Ma ReadOnly = false, Description = @"Solution request trigger criteria", SerializedName = @"triggerCriteria", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get => _solutionPatchRequestBody.TriggerCriterion ?? null /* arrayOf */; set => _solutionPatchRequestBody.TriggerCriterion = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] TriggerCriterion { get => _solutionPatchRequestBody.TriggerCriterion?.ToArray() ?? null /* fixedArrayOf */; set => _solutionPatchRequestBody.TriggerCriterion = (value != null ? new System.Collections.Generic.List(value) : null); } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -237,6 +258,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.UpdateAzSelfHelpSolut /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -301,11 +327,36 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: { + var data = messageData(); if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) { - var data = messageData(); if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) { var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); @@ -317,10 +368,26 @@ protected override void EndProcessing() return; } } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } break; } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -388,7 +455,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -401,12 +468,12 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.SolutionUpdate(Scope, ResourceName, _solutionPatchRequestBody, onOk, onDefault, this, Pipeline); + await this.Client.SolutionUpdate(Scope, ResourceName, _solutionPatchRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate); await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName,body=_solutionPatchRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -426,7 +493,7 @@ protected override void StopProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public UpdateAzSelfHelpSolution_UpdateExpanded() { @@ -452,12 +519,12 @@ public UpdateAzSelfHelpSolution_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -474,15 +541,15 @@ public UpdateAzSelfHelpSolution_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, ResourceName=ResourceName, body=_solutionPatchRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, ResourceName=ResourceName, body=_solutionPatchRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -492,12 +559,12 @@ public UpdateAzSelfHelpSolution_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -509,8 +576,26 @@ public UpdateAzSelfHelpSolution_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded.cs index c8c21b504395..12bc771ab255 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded.cs @@ -6,21 +6,24 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets { using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; using System; /// - /// Update the requiredInputs or additional information needed to execute the solution + /// update the requiredInputs or additional information needed to execute the solution /// /// /// [OpenAPI] Update=>PATCH:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzSelfHelpSolution_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"Update the requiredInputs or additional information needed to execute the solution ")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"update the requiredInputs or additional information needed to execute the solution ")] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] public partial class UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, - Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext { /// A unique id generatd for the this cmdlet when it is instantiated. private string __correlationId = System.Guid.NewGuid().ToString(); @@ -36,8 +39,20 @@ public partial class UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded : global /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + /// Solution PatchRequest body - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionPatchRequestBody _solutionPatchRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.SolutionPatchRequestBody(); + private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionPatchRequestBody _solutionPatchRequestBody = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.SolutionPatchRequestBody(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -49,6 +64,9 @@ public partial class UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded : global [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter Break { get; set; } + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + /// The reference to the client API class. public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; @@ -62,6 +80,9 @@ public partial class UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded : global [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -110,13 +131,13 @@ public partial class UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded : global ReadOnly = false, Description = @"Client input parameters to run Solution", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters Parameter { get => _solutionPatchRequestBody.Parameter ?? null /* object */; set => _solutionPatchRequestBody.Parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters Parameter { get => _solutionPatchRequestBody.Parameter ?? null /* object */; set => _solutionPatchRequestBody.Parameter = value; } /// /// The instance of the that the remote call will use. /// - private Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -143,32 +164,32 @@ public partial class UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded : global ReadOnly = false, Description = @"Solution request trigger criteria", SerializedName = @"triggerCriteria", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion) })] - public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[] TriggerCriterion { get => _solutionPatchRequestBody.TriggerCriterion ?? null /* arrayOf */; set => _solutionPatchRequestBody.TriggerCriterion = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion) })] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[] TriggerCriterion { get => _solutionPatchRequestBody.TriggerCriterion?.ToArray() ?? null /* fixedArrayOf */; set => _solutionPatchRequestBody.TriggerCriterion = (value != null ? new System.Collections.Generic.List(value) : null); } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -212,6 +233,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.UpdateAzSelfHelpSolut /// Performs clean-up after the command execution protected override void EndProcessing() { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); if (telemetryInfo != null) { @@ -276,11 +302,36 @@ protected override void EndProcessing() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: { + var data = messageData(); if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) { - var data = messageData(); if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) { var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); @@ -292,10 +343,26 @@ protected override void EndProcessing() return; } } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } break; } } - await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) { return ; @@ -363,7 +430,7 @@ protected override void ProcessRecord() using( NoSynchronizationContext ) { await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); if (null != HttpPipelinePrepend) { Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); @@ -378,7 +445,7 @@ protected override void ProcessRecord() await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } if (InputObject?.Id != null) { - await this.Client.SolutionUpdateViaIdentity(InputObject.Id, _solutionPatchRequestBody, onOk, onDefault, this, Pipeline); + await this.Client.SolutionUpdateViaIdentity(InputObject.Id, _solutionPatchRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate); } else { @@ -391,13 +458,13 @@ protected override void ProcessRecord() { ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SolutionResourceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); } - await this.Client.SolutionUpdate(InputObject.Scope ?? null, InputObject.SolutionResourceName ?? null, _solutionPatchRequestBody, onOk, onDefault, this, Pipeline); + await this.Client.SolutionUpdate(InputObject.Scope ?? null, InputObject.SolutionResourceName ?? null, _solutionPatchRequestBody, onOk, onDefault, this, Pipeline, Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SerializationMode.IncludeUpdate); } await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) { - WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_solutionPatchRequestBody}) + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } }); @@ -417,7 +484,7 @@ protected override void StopProcessing() } /// - /// Intializes a new instance of the cmdlet class. + /// Initializes a new instance of the cmdlet class. /// public UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded() { @@ -443,12 +510,12 @@ public UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorResponse + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -465,15 +532,15 @@ public UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); - WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_solutionPatchRequestBody }) + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } }); } else { - WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_solutionPatchRequestBody }) + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } }); @@ -483,12 +550,12 @@ public UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -500,8 +567,26 @@ public UpdateAzSelfHelpSolution_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource - WriteObject((await response)); + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } } } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonFilePath.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonFilePath.cs new file mode 100644 index 000000000000..6cf909c99669 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonFilePath.cs @@ -0,0 +1,591 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// update the requiredInputs or additional information needed to execute the solution + /// + /// + /// [OpenAPI] Update=>PATCH:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzSelfHelpSolution_UpdateViaJsonFilePath", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"update the requiredInputs or additional information needed to execute the solution ")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class UpdateAzSelfHelpSolution_UpdateViaJsonFilePath : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + public global::System.String _jsonString; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonFilePath; + + /// Path of Json file supplied to the Update operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Path of Json file supplied to the Update operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Path of Json file supplied to the Update operation", + SerializedName = @"JsonFilePath", + PossibleTypes = new [] { typeof(string) })] + public string JsonFilePath { get => this._jsonFilePath; set { if (!System.IO.File.Exists(value)) { throw new Exception("Cannot find File " + value); } this._jsonString = System.IO.File.ReadAllText(value); this._jsonFilePath = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceName; + + /// Solution resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Solution resource Name.", + SerializedName = @"solutionResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("SolutionResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string ResourceName { get => this._resourceName; set => this._resourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzSelfHelpSolution_UpdateViaJsonFilePath + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.UpdateAzSelfHelpSolution_UpdateViaJsonFilePath Clone() + { + var clone = new UpdateAzSelfHelpSolution_UpdateViaJsonFilePath(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.ResourceName = this.ResourceName; + clone.JsonFilePath = this.JsonFilePath; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SolutionUpdateViaJsonString(Scope, ResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public UpdateAzSelfHelpSolution_UpdateViaJsonFilePath() + { + + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonString.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonString.cs new file mode 100644 index 000000000000..84030ef17bc5 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/cmdlets/UpdateAzSelfHelpSolution_UpdateViaJsonString.cs @@ -0,0 +1,589 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell; + using Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets; + using System; + + /// + /// update the requiredInputs or additional information needed to execute the solution + /// + /// + /// [OpenAPI] Update=>PATCH:"/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzSelfHelpSolution_UpdateViaJsonString", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Description(@"update the requiredInputs or additional information needed to execute the solution ")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Generated] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.HttpPath(Path = "/{scope}/providers/Microsoft.Help/solutions/{solutionResourceName}", ApiVersion = "2024-03-01-preview")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.NotSuggestDefaultParameterSet] + public partial class UpdateAzSelfHelpSolution_UpdateViaJsonString : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener, + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A dictionary to carry over additional data for pipeline. + private global::System.Collections.Generic.Dictionary _extensibleParameters = new System.Collections.Generic.Dictionary(); + + /// A buffer to record first returned object in response. + private object _firstResponse = null; + + /// + /// A flag to tell whether it is the first returned object in a call. Zero means no response yet. One means 1 returned object. + /// Two means multiple returned objects in response. + /// + private int _responseSize = 0; + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// Accessor for cancellationTokenSource. + public global::System.Threading.CancellationTokenSource CancellationTokenSource { get => _cancellationTokenSource ; set { _cancellationTokenSource = value; } } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.ClientAPI; + + /// + /// The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet + /// against a different subscription + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Accessor for extensibleParameters. + public global::System.Collections.Generic.IDictionary ExtensibleParameters { get => _extensibleParameters ; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _jsonString; + + /// Json string supplied to the Update operation + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Json string supplied to the Update operation")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Json string supplied to the Update operation", + SerializedName = @"JsonString", + PossibleTypes = new [] { typeof(string) })] + public string JsonString { get => this._jsonString; set => this._jsonString = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceName; + + /// Solution resource Name. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Solution resource Name.")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Solution resource Name.", + SerializedName = @"solutionResourceName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("SolutionResourceName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string ResourceName { get => this._resourceName; set => this._resourceName = value; } + + /// Backing field for property. + private string _scope; + + /// + /// scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read + ///
+ [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ")] + [Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"scope = resourceUri of affected resource.
For example: /subscriptions/0d0fcd2e-c4fd-4349-8497-200edb3923c6/resourcegroups/myresourceGroup/providers/Microsoft.KeyVault/vaults/test-keyvault-non-read ", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Category(global::Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.ParameterCategory.Path)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzSelfHelpSolution_UpdateViaJsonString + public Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Cmdlets.UpdateAzSelfHelpSolution_UpdateViaJsonString Clone() + { + var clone = new UpdateAzSelfHelpSolution_UpdateViaJsonString(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Scope = this.Scope; + clone.ResourceName = this.ResourceName; + clone.JsonString = this.JsonString; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse); + } + var telemetryInfo = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.GetTelemetryInfo?.Invoke(__correlationId); + if (telemetryInfo != null) + { + telemetryInfo.TryGetValue("ShowSecretsWarning", out var showSecretsWarning); + telemetryInfo.TryGetValue("SanitizedProperties", out var sanitizedProperties); + telemetryInfo.TryGetValue("InvocationName", out var invocationName); + if (showSecretsWarning == "true") + { + if (string.IsNullOrEmpty(sanitizedProperties)) + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing secrets. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + else + { + WriteWarning($"The output of cmdlet {invocationName} may compromise security by showing the following secrets: {sanitizedProperties}. Learn more at https://go.microsoft.com/fwlink/?linkid=2258844"); + } + } + } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.Progress: + { + var data = messageData(); + int progress = (int)data.Value; + string activityMessage, statusDescription; + global::System.Management.Automation.ProgressRecordType recordType; + if (progress < 100) + { + activityMessage = "In progress"; + statusDescription = "Checking operation status"; + recordType = System.Management.Automation.ProgressRecordType.Processing; + } + else + { + activityMessage = "Completed"; + statusDescription = "Completed"; + recordType = System.Management.Automation.ProgressRecordType.Completed; + } + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, activityMessage, statusDescription) + { + PercentComplete = progress, + RecordType = recordType + }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.DelayBeforePolling: + { + var data = messageData(); + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + else + { + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + int delay = (int)(response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + WriteDebug($"Delaying {delay} seconds before polling."); + for (var now = 0; now < delay; ++now) + { + WriteProgress(new global::System.Management.Automation.ProgressRecord(1, "In progress", "Checking operation status") + { + PercentComplete = now * 100 / delay + }); + await global::System.Threading.Tasks.Task.Delay(1000, token); + } + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.Signal(id, token, messageData, (i, t, m) => ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(i, t, () => Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventDataConverter.ConvertFrom(m()) as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.EventData), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'SolutionUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName, this.ExtensibleParameters); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.SolutionUpdateViaJsonString(Scope, ResourceName, _jsonString, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,ResourceName=ResourceName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Initializes a new instance of the cmdlet class. + /// + public UpdateAzSelfHelpSolution_UpdateViaJsonString() + { + + } + + /// + new protected void WriteObject(object sendToPipeline) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline); + } + + /// + /// + new protected void WriteObject(object sendToPipeline, bool enumerateCollection) + { + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Module.Instance.SanitizeOutput?.Invoke(sendToPipeline, __correlationId); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource + var result = (await response); + if (null != result) + { + if (0 == _responseSize) + { + _firstResponse = result; + _responseSize = 1; + } + else + { + if (1 ==_responseSize) + { + // Flush buffer + WriteObject(_firstResponse.AddMultipleTypeNameIntoPSObject()); + } + WriteObject(result.AddMultipleTypeNameIntoPSObject()); + _responseSize = 2; + } + } + } + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/ExternalDocsAttribute.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/ExternalDocsAttribute.cs new file mode 100644 index 000000000000..f96ba9da94b9 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/ExternalDocsAttribute.cs @@ -0,0 +1,30 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp +{ + using System; + using System.Collections.Generic; + using System.Text; + + [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)] + public class ExternalDocsAttribute : Attribute + { + + public string Description { get; } + + public string Url { get; } + + public ExternalDocsAttribute(string url) + { + Url = url; + } + + public ExternalDocsAttribute(string url, string description) + { + Url = url; + Description = description; + } + } +} diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/PSArgumentCompleterAttribute.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/PSArgumentCompleterAttribute.cs new file mode 100644 index 000000000000..29f9ee02dc10 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Attributes/PSArgumentCompleterAttribute.cs @@ -0,0 +1,52 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Automation; + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp +{ + public class PSArgumentCompleterAttribute : ArgumentCompleterAttribute + { + internal string[] ResourceTypes; + + public PSArgumentCompleterAttribute(params string[] argumentList) : base(CreateScriptBlock(argumentList)) + { + ResourceTypes = argumentList; + } + + public static ScriptBlock CreateScriptBlock(string[] resourceTypes) + { + List outputResourceTypes = new List(); + foreach (string resourceType in resourceTypes) + { + if (resourceType.Contains(" ")) + { + outputResourceTypes.Add("\'\'" + resourceType + "\'\'"); + } + else + { + outputResourceTypes.Add(resourceType); + } + } + string scriptResourceTypeList = "'" + String.Join("' , '", outputResourceTypes) + "'"; + string script = "param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)\n" + + String.Format("$values = {0}\n", scriptResourceTypeList) + + "$values | Where-Object { $_ -Like \"$wordToComplete*\" -or $_ -Like \"'$wordToComplete*\" } | Sort-Object | ForEach-Object { [System.Management.Automation.CompletionResult]::new($_, $_, 'ParameterValue', $_) }"; + ScriptBlock scriptBlock = ScriptBlock.Create(script); + return scriptBlock; + } + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs index c1ead134e698..b6c969c4a59a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs @@ -20,11 +20,13 @@ public class ExportFormatPs1xml : PSCmdlet public string FilePath { get; set; } private const string ModelNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models"; - private const string SupportNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support"; + private const string SupportNamespace = @"${$project.supportNamespace.fullName}"; private const string PropertiesExcludedForTableview = @"Id,Type"; private static readonly bool IsAzure = Convert.ToBoolean(@"true"); + private static string SelectedBySuffix = @"#Multiple"; + protected override void ProcessRecord() { try @@ -76,7 +78,7 @@ private static View CreateViewModel(ViewParameters viewParameters) Name = viewParameters.Type.FullName, ViewSelectedBy = new ViewSelectedBy { - TypeName = viewParameters.Type.FullName + TypeName = string.Concat(viewParameters.Type.FullName, SelectedBySuffix) }, TableControl = new TableControl { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs index 00cb7f82a671..e48704f0f8e5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs @@ -24,7 +24,7 @@ public class ExportModelSurface : PSCmdlet public bool UseExpandedFormat { get; set; } private const string ModelNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models"; - private const string SupportNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support"; + private const string SupportNamespace = @"${$project.supportNamespace.fullName}"; protected override void ProcessRecord() { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs index bd1b351a12df..5bc0dec94bce 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs @@ -70,9 +70,8 @@ protected override void ProcessRecord() var variantGroups = profileGroups.SelectMany(pg => pg.Variants .GroupBy(v => new { v.CmdletName, v.IsInternal }) .Select(vg => new VariantGroup(ModuleName, vg.Key.CmdletName, vg.Select(v => v).ToArray(), - Path.Combine(vg.Key.IsInternal ? InternalFolder : ExportsFolder, pg.ProfileFolder), pg.ProfileName, isInternal: vg.Key.IsInternal))) + Path.Combine(vg.Key.IsInternal ? InternalFolder : ExportsFolder, pg.ProfileFolder), pg.ProfileName, isInternal: vg.Key.IsInternal))) .ToArray(); - var license = new StringBuilder(); license.Append(@" # ---------------------------------------------------------------------------------- @@ -114,6 +113,7 @@ protected override void ProcessRecord() sb.Append("param("); sb.Append($"{(parameterGroups.Any() ? Environment.NewLine : String.Empty)}"); + foreach (var parameterGroup in parameterGroups) { var parameters = parameterGroup.HasAllVariants ? parameterGroup.Parameters.Take(1) : parameterGroup.Parameters; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs index ba66d0a936c2..c1deb1123262 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -137,7 +137,7 @@ protected override void ProcessRecord() } else { - var cmdletsList = functionInfos.Select(fi => fi.Name).Distinct().Append("*").ToPsList(); + var cmdletsList = functionInfos.Select(fi => fi.Name).Distinct().ToPsList(); sb.AppendLine($@"{Indent}FunctionsToExport = {cmdletsList}"); } @@ -148,8 +148,10 @@ protected override void ProcessRecord() } else { - var aliasesList = functionInfos.SelectMany(fi => fi.ScriptBlock.Attributes).ToAliasNames().Append("*").ToPsList(); - sb.AppendLine($@"{Indent}AliasesToExport = {aliasesList}"); + var aliasesList = functionInfos.SelectMany(fi => fi.ScriptBlock.Attributes).ToAliasNames().ToPsList(); + if (!String.IsNullOrEmpty(aliasesList)) { + sb.AppendLine($@"{Indent}AliasesToExport = {aliasesList}"); + } } // CmdletsToExport diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs index cea622fa031c..dfc07c52d4a1 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs @@ -12,50 +12,96 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell { - [Cmdlet(VerbsData.Export, "TestStub")] - [DoNotExport] - public class ExportTestStub : PSCmdlet - { - [Parameter(Mandatory = true)] - [ValidateNotNullOrEmpty] - public string ModuleName { get; set; } - - [Parameter(Mandatory = true)] - [ValidateNotNullOrEmpty] - public string ExportsFolder { get; set; } - - [Parameter(Mandatory = true)] - [ValidateNotNullOrEmpty] - public string OutputFolder { get; set; } - - [Parameter] - public SwitchParameter IncludeGenerated { get; set; } - - protected override void ProcessRecord() + [Cmdlet(VerbsData.Export, "TestStub")] + [DoNotExport] + public class ExportTestStub : PSCmdlet { - try - { - if (!Directory.Exists(ExportsFolder)) - { - throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); - } + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } - var exportDirectories = Directory.GetDirectories(ExportsFolder); - if (!exportDirectories.Any()) - { - exportDirectories = new[] { ExportsFolder }; - } - var utilFile = Path.Combine(OutputFolder, "utils.ps1"); - if (!File.Exists(utilFile)) + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public SwitchParameter IncludeGenerated { get; set; } + + protected override void ProcessRecord() { - var sc = new StringBuilder(); - sc.AppendLine(@"function RandomString([bool]$allChars, [int32]$len) { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + var exportDirectories = Directory.GetDirectories(ExportsFolder); + if (!exportDirectories.Any()) + { + exportDirectories = new[] { ExportsFolder }; + } + /*var loadEnvFile = Path.Combine(OutputFolder, "loadEnv.ps1"); + if (!File.Exists(loadEnvFile)) + { + var sc = new StringBuilder(); + sc.AppendLine(@" +$envFile = 'env.json' +if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' +} + +if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { + $envFilePath = Join-Path $PSScriptRoot $envFile +} else { + $envFilePath = Join-Path $PSScriptRoot '..\$envFile' +} +$env = @{} +if (Test-Path -Path $envFilePath) { + $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json +}"); + File.WriteAllText(loadEnvFile, sc.ToString()); + }*/ + var utilFile = Path.Combine(OutputFolder, "utils.ps1"); + if (!File.Exists(utilFile)) + { + var sc = new StringBuilder(); + sc.AppendLine(@"function RandomString([bool]$allChars, [int32]$len) { if ($allChars) { return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) } else { return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) } } +function Start-TestSleep { + [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] + param( + [parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SleepBySeconds')] + [ValidateRange(0.0, 2147483.0)] + [double] $Seconds, + + [parameter(Mandatory = $true, ParameterSetName = 'SleepByMilliseconds')] + [ValidateRange('NonNegative')] + [Alias('ms')] + [int] $Milliseconds + ) + + if ($TestMode -ne 'playback') { + switch ($PSCmdlet.ParameterSetName) { + 'SleepBySeconds' { + Start-Sleep -Seconds $Seconds + } + 'SleepByMilliseconds' { + Start-Sleep -Milliseconds $Milliseconds + } + } + } +} + $env = @{} if ($UsePreviousConfigForRecord) { $previousEnv = Get-Content (Join-Path $PSScriptRoot 'env.json') | ConvertFrom-Json @@ -80,37 +126,40 @@ function cleanupEnv() { # Clean resources you create for testing } "); - File.WriteAllText(utilFile, sc.ToString()); - } - foreach (var exportDirectory in exportDirectories) - { - var outputFolder = OutputFolder; - if (exportDirectory != ExportsFolder) - { - outputFolder = Path.Combine(OutputFolder, Path.GetFileName(exportDirectory)); - Directory.CreateDirectory(outputFolder); - } - - var variantGroups = GetScriptCmdlets(exportDirectory) - .SelectMany(fi => fi.ToVariants()) - .Where(v => !v.IsDoNotExport) - .GroupBy(v => v.CmdletName) - .Select(vg => new VariantGroup(ModuleName, vg.Key, vg.Select(v => v).ToArray(), outputFolder, isTest: true)) - .Where(vtg => !File.Exists(vtg.FilePath) && (IncludeGenerated || !vtg.IsGenerated)); - - foreach (var variantGroup in variantGroups) - { - var sb = new StringBuilder(); - sb.AppendLine($"if(($null -eq $TestName) -or ($TestName -contains '{variantGroup.CmdletName}'))"); - sb.AppendLine(@"{ + File.WriteAllText(utilFile, sc.ToString()); + } + + + + foreach (var exportDirectory in exportDirectories) + { + var outputFolder = OutputFolder; + if (exportDirectory != ExportsFolder) + { + outputFolder = Path.Combine(OutputFolder, Path.GetFileName(exportDirectory)); + Directory.CreateDirectory(outputFolder); + } + + var variantGroups = GetScriptCmdlets(exportDirectory) + .SelectMany(fi => fi.ToVariants()) + .Where(v => !v.IsDoNotExport) + .GroupBy(v => v.CmdletName) + .Select(vg => new VariantGroup(ModuleName, vg.Key, vg.Select(v => v).ToArray(), outputFolder, isTest: true)) + .Where(vtg => !File.Exists(vtg.FilePath) && (IncludeGenerated || !vtg.IsGenerated)); + + foreach (var variantGroup in variantGroups) + { + var sb = new StringBuilder(); + sb.AppendLine($"if(($null -eq $TestName) -or ($TestName -contains '{variantGroup.CmdletName}'))"); + sb.AppendLine(@"{ $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath)" -); - sb.AppendLine($@" $TestRecordingFile = Join-Path $PSScriptRoot '{variantGroup.CmdletName}.Recording.json'"); - sb.AppendLine(@" $currentPath = $PSScriptRoot + ); + sb.AppendLine($@" $TestRecordingFile = Join-Path $PSScriptRoot '{variantGroup.CmdletName}.Recording.json'"); + sb.AppendLine(@" $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent @@ -120,29 +169,29 @@ function cleanupEnv() { "); - sb.AppendLine($"Describe '{variantGroup.CmdletName}' {{"); - var variants = variantGroup.Variants - .Where(v => IncludeGenerated || !v.Attributes.OfType().Any()) - .ToList(); + sb.AppendLine($"Describe '{variantGroup.CmdletName}' {{"); + var variants = variantGroup.Variants + .Where(v => IncludeGenerated || !v.Attributes.OfType().Any()) + .ToList(); - foreach (var variant in variants) + foreach (var variant in variants) + { + sb.AppendLine($"{Indent}It '{variant.VariantName}' -skip {{"); + sb.AppendLine($"{Indent}{Indent}{{ throw [System.NotImplementedException] }} | Should -Not -Throw"); + var variantSeparator = variants.IndexOf(variant) == variants.Count - 1 ? String.Empty : Environment.NewLine; + sb.AppendLine($"{Indent}}}{variantSeparator}"); + } + sb.AppendLine("}"); + + File.WriteAllText(variantGroup.FilePath, sb.ToString()); + } + } + } + catch (Exception ee) { - sb.AppendLine($"{Indent}It '{variant.VariantName}' -skip {{"); - sb.AppendLine($"{Indent}{Indent}{{ throw [System.NotImplementedException] }} | Should -Not -Throw"); - var variantSeparator = variants.IndexOf(variant) == variants.Count - 1 ? String.Empty : Environment.NewLine; - sb.AppendLine($"{Indent}}}{variantSeparator}"); + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; } - sb.AppendLine("}"); - - File.WriteAllText(variantGroup.FilePath, sb.ToString()); - } } - } - catch (Exception ee) - { - Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); - throw ee; - } } - } } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/MarkdownRenderer.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/MarkdownRenderer.cs index 4514a86aae32..9cac5874020f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/MarkdownRenderer.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/MarkdownRenderer.cs @@ -94,7 +94,7 @@ public static void WriteMarkdowns(IEnumerable variantGroups, PsMod sb.Append($"## RELATED LINKS{Environment.NewLine}{Environment.NewLine}"); foreach (var relatedLink in markdownInfo.RelatedLinks) { - sb.Append($"{relatedLink}{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"[{relatedLink}]({relatedLink}){Environment.NewLine}{Environment.NewLine}"); } File.WriteAllText(Path.Combine(docsFolder, $"{markdownInfo.CmdletName}.md"), sb.ToString()); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs index 9d4a8979684b..f87f95f645ba 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs @@ -31,7 +31,7 @@ internal class MarkdownHelpInfo public string[] Inputs { get; } public string[] Outputs { get; } public ComplexInterfaceInfo[] ComplexInterfaceInfos { get; } - public string[] RelatedLinks { get; } + public MarkdownRelatedLinkInfo[] RelatedLinks { get; } public bool SupportsShouldProcess { get; } public bool SupportsPaging { get; } @@ -67,7 +67,11 @@ public MarkdownHelpInfo(VariantGroup variantGroup, string examplesFolder, string ComplexInterfaceInfos = variantGroup.ComplexInterfaceInfos; OnlineVersion = commentInfo.OnlineVersion; - RelatedLinks = commentInfo.RelatedLinks; + + var relatedLinkLists = new List(); + relatedLinkLists.AddRange(commentInfo.RelatedLinks?.Select(link => new MarkdownRelatedLinkInfo(link))); + relatedLinkLists.AddRange(variantGroup.Variants.SelectMany(v => v.Attributes).OfType()?.Distinct()?.Select(link => new MarkdownRelatedLinkInfo(link.Url, link.Description))); + RelatedLinks = relatedLinkLists?.ToArray(); SupportsShouldProcess = variantGroup.SupportsShouldProcess; SupportsPaging = variantGroup.SupportsPaging; @@ -218,14 +222,45 @@ public MarkdownParameterHelpInfo(PsParameterHelpInfo[] parameterHelpInfos, Param } } + internal class MarkdownRelatedLinkInfo + { + public string Url { get; } + public string Description { get; } + + public MarkdownRelatedLinkInfo(string url) + { + Url = url; + } + + public MarkdownRelatedLinkInfo(string url, string description) + { + Url = url; + Description = description; + } + + public override string ToString() + { + if (string.IsNullOrEmpty(Description)) + { + return Url; + } + else + { + return $@"[{Description}]({Url})"; + + } + + } + } + internal static class MarkdownTypesExtensions { public static MarkdownExampleHelpInfo ToExampleHelpInfo(this PsHelpExampleInfo exampleInfo) => new MarkdownExampleHelpInfo(exampleInfo.Title, exampleInfo.Code, exampleInfo.Output, exampleInfo.Remarks); public static MarkdownExampleHelpInfo[] DefaultExampleHelpInfos = { - new MarkdownExampleHelpInfo("Example 1: {{ Add title here }}", $@"{{{{ Add code here }}}}", $@"{{{{ Add output here }}}}", @"{{ Add description here }}"), - new MarkdownExampleHelpInfo("Example 2: {{ Add title here }}", $@"{{{{ Add code here }}}}", $@"{{{{ Add output here }}}}", @"{{ Add description here }}"), + new MarkdownExampleHelpInfo("Example 1: {{ Add title here }}", $@"{{{{ Add code here }}}}", $@"{{{{ Add output here (remove the output block if the example doesn't have an output) }}}}", @"{{ Add description here }}"), + new MarkdownExampleHelpInfo("Example 2: {{ Add title here }}", $@"{{{{ Add code here }}}}", $@"{{{{ Add output here (remove the output block if the example doesn't have an output) }}}}", @"{{ Add description here }}"), }; public static MarkdownParameterHelpInfo[] SupportsShouldProcessParameters = diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyOutputs.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyOutputs.cs index 0b674730390c..0af07743d645 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyOutputs.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyOutputs.cs @@ -121,6 +121,21 @@ public override string ToString() => CompleterInfo != null : String.Empty; } + internal class PSArgumentCompleterOutput : ArgumentCompleterOutput + { + public PSArgumentCompleterInfo PSArgumentCompleterInfo { get; } + + public PSArgumentCompleterOutput(PSArgumentCompleterInfo completerInfo) : base(completerInfo) + { + PSArgumentCompleterInfo = completerInfo; + } + + + public override string ToString() => PSArgumentCompleterInfo != null + ? $"{Indent}[{typeof(PSArgumentCompleterAttribute)}({(PSArgumentCompleterInfo.IsTypeCompleter ? $"[{PSArgumentCompleterInfo.Type.Unwrap().ToPsType()}]" : $"{PSArgumentCompleterInfo.ResourceTypes?.Select(r => $"\"{r}\"")?.JoinIgnoreEmpty(", ")}")})]{Environment.NewLine}" + : String.Empty; + } + internal class DefaultInfoOutput { public bool HasDefaultInfo { get; } @@ -173,6 +188,7 @@ internal class BaseOutput public VariantGroup VariantGroup { get; } protected static readonly bool IsAzure = Convert.ToBoolean(@"true"); + public BaseOutput(VariantGroup variantGroup) { VariantGroup = variantGroup; @@ -200,6 +216,21 @@ public string GetProcessCustomAttributesAtRuntime() {Indent}{Indent}[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)"; } + private string GetLoginVerification() + { + if (!VariantGroup.IsInternal && IsAzure && !VariantGroup.IsModelCmdlet) + { + return $@" +{Indent}{Indent}$context = Get-AzContext +{Indent}{Indent}if (-not $context -and -not $testPlayback) {{ +{Indent}{Indent}{Indent}Write-Error ""No Azure login detected. Please run 'Connect-AzAccount' to log in."" +{Indent}{Indent}{Indent}exit +{Indent}{Indent}}} +"; + } + return ""; + } + private string GetTelemetry() { if (!VariantGroup.IsInternal && IsAzure) @@ -232,10 +263,16 @@ public override string ToString() => $@"begin {{ {Indent}{Indent}{Indent}$PSBoundParameters['OutBuffer'] = 1 {Indent}{Indent}}} {Indent}{Indent}$parameterSet = $PSCmdlet.ParameterSetName -{GetTelemetry()} +{Indent}{Indent} +{Indent}{Indent}$testPlayback = $false +{Indent}{Indent}$PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object {{ if ($_) {{ $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) }} }} +{GetLoginVerification()}{GetTelemetry()} {GetParameterSetToCmdletMapping()}{GetDefaultValuesStatements()} {GetProcessCustomAttributesAtRuntime()} {Indent}{Indent}$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) +{Indent}{Indent}if ($wrappedCmd -eq $null) {{ +{Indent}{Indent}{Indent}$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) +{Indent}{Indent}}} {Indent}{Indent}$scriptCmd = {{& $wrappedCmd @PSBoundParameters}} {Indent}{Indent}$steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) {Indent}{Indent}$steppablePipeline.Begin($PSCmdlet) @@ -269,13 +306,16 @@ private string GetDefaultValuesStatements() var variantListString = defaultInfo.ParameterGroup.VariantNames.ToPsList(); var parameterName = defaultInfo.ParameterGroup.ParameterName; sb.AppendLine(); + var setCondition = " "; + if (!String.IsNullOrEmpty(defaultInfo.SetCondition)) + { + setCondition = $" -and {defaultInfo.SetCondition}"; + } //Yabo: this is bad to hard code the subscription id, but autorest load input README.md reversely (entry readme -> required readme), there are no other way to //override default value set in required readme if ("SubscriptionId".Equals(parameterName)) { - sb.AppendLine($"{Indent}{Indent}if (({variantListString}) -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('{parameterName}')) {{"); - sb.AppendLine($"{Indent}{Indent}{Indent}$testPlayback = $false"); - sb.AppendLine($"{Indent}{Indent}{Indent}$PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object {{ if ($_) {{ $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) }} }}"); + sb.AppendLine($"{Indent}{Indent}if (({variantListString}) -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('{parameterName}'){setCondition}) {{"); sb.AppendLine($"{Indent}{Indent}{Indent}if ($testPlayback) {{"); sb.AppendLine($"{Indent}{Indent}{Indent}{Indent}$PSBoundParameters['{parameterName}'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')"); sb.AppendLine($"{Indent}{Indent}{Indent}}} else {{"); @@ -285,13 +325,15 @@ private string GetDefaultValuesStatements() } else { - sb.AppendLine($"{Indent}{Indent}if (({variantListString}) -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('{parameterName}')) {{"); + sb.AppendLine($"{Indent}{Indent}if (({variantListString}) -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('{parameterName}'){setCondition}) {{"); sb.AppendLine($"{Indent}{Indent}{Indent}$PSBoundParameters['{parameterName}'] = {defaultInfo.Script}"); sb.Append($"{Indent}{Indent}}}"); } + } return sb.ToString(); } + } internal class ProcessOutput : BaseOutput @@ -381,6 +423,8 @@ public override string ToString() var notesText = !String.IsNullOrEmpty(notes) ? $"{Environment.NewLine}.Notes{Environment.NewLine}{ComplexParameterHeader}{notes}" : String.Empty; var relatedLinks = String.Join(Environment.NewLine, CommentInfo.RelatedLinks.Select(l => $".Link{Environment.NewLine}{l}")); var relatedLinksText = !String.IsNullOrEmpty(relatedLinks) ? $"{Environment.NewLine}{relatedLinks}" : String.Empty; + var externalUrls = String.Join(Environment.NewLine, CommentInfo.ExternalUrls.Select(l => $".Link{Environment.NewLine}{l}")); + var externalUrlsText = !String.IsNullOrEmpty(externalUrls) ? $"{Environment.NewLine}{externalUrls}" : String.Empty; var examples = ""; foreach (var example in VariantGroup.HelpInfo.Examples) { @@ -393,7 +437,7 @@ public override string ToString() {CommentInfo.Description.ToDescriptionFormat(false)} {examples}{inputsText}{outputsText}{notesText} .Link -{CommentInfo.OnlineVersion}{relatedLinksText} +{CommentInfo.OnlineVersion}{relatedLinksText}{externalUrlsText} #> "; } @@ -587,7 +631,9 @@ public static string ToSyntaxTypeName(this Type type) public static AllowEmptyArrayOutput ToAllowEmptyArray(this bool hasAllowEmptyArray) => new AllowEmptyArrayOutput(hasAllowEmptyArray); - public static ArgumentCompleterOutput ToArgumentCompleterOutput(this CompleterInfo completerInfo) => new ArgumentCompleterOutput(completerInfo); + public static ArgumentCompleterOutput ToArgumentCompleterOutput(this CompleterInfo completerInfo) => (completerInfo is PSArgumentCompleterInfo psArgumentCompleterInfo) ? psArgumentCompleterInfo.ToArgumentCompleterOutput() : new ArgumentCompleterOutput(completerInfo); + + public static PSArgumentCompleterOutput ToArgumentCompleterOutput(this PSArgumentCompleterInfo completerInfo) => new PSArgumentCompleterOutput(completerInfo); public static DefaultInfoOutput ToDefaultInfoOutput(this ParameterGroup parameterGroup) => new DefaultInfoOutput(parameterGroup); diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyTypes.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyTypes.cs index 127d5ade8846..7da856f9513a 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyTypes.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/Models/PsProxyTypes.cs @@ -31,7 +31,7 @@ internal class VariantGroup { public string ModuleName { get; } - public string RootModuleName {get => @"";} + public string RootModuleName { get => @""; } public string CmdletName { get; } public string CmdletVerb { get; } public string CmdletNoun { get; } @@ -49,7 +49,7 @@ internal class VariantGroup public PsHelpInfo HelpInfo { get; } public bool IsGenerated { get; } public bool IsInternal { get; } - + public bool IsModelCmdlet { get; } public string OutputFolder { get; } public string FileName { get; } public string FilePath { get; } @@ -84,7 +84,7 @@ public VariantGroup(string moduleName, string cmdletName, Variant[] variants, st HelpInfo = Variants.Select(v => v.HelpInfo).FirstOrDefault() ?? new PsHelpInfo(); IsGenerated = Variants.All(v => v.Attributes.OfType().Any()); IsInternal = isInternal; - + IsModelCmdlet = Variants.All(v => v.IsModelCmdlet); OutputFolder = outputFolder; FileName = $"{CmdletName}{(isTest ? ".Tests" : String.Empty)}.ps1"; FilePath = Path.Combine(OutputFolder, FileName); @@ -101,12 +101,23 @@ private string DetermineDefaultParameterSetName() if (String.IsNullOrEmpty(defaultParameterSet)) { var variantParamCountGroups = Variants + .Where(v => !v.IsNotSuggestDefaultParameterSet) .Select(v => ( variant: v.VariantName, paramCount: v.CmdletOnlyParameters.Count(p => p.IsMandatory), isSimple: v.CmdletOnlyParameters.Where(p => p.IsMandatory).All(p => p.ParameterType.IsPsSimple()))) .GroupBy(vpc => vpc.isSimple) .ToArray(); + if (variantParamCountGroups.Length == 0) + { + variantParamCountGroups = Variants + .Select(v => ( + variant: v.VariantName, + paramCount: v.CmdletOnlyParameters.Count(p => p.IsMandatory), + isSimple: v.CmdletOnlyParameters.Where(p => p.IsMandatory).All(p => p.ParameterType.IsPsSimple()))) + .GroupBy(vpc => vpc.isSimple) + .ToArray(); + } var variantParameterCounts = (variantParamCountGroups.Any(g => g.Key) ? variantParamCountGroups.Where(g => g.Key) : variantParamCountGroups).SelectMany(g => g).ToArray(); var smallestParameterCount = variantParameterCounts.Min(vpc => vpc.paramCount); defaultParameterSet = variantParameterCounts.First(vpc => vpc.paramCount == smallestParameterCount).variant; @@ -134,7 +145,9 @@ internal class Variant public Parameter[] Parameters { get; } public Parameter[] CmdletOnlyParameters { get; } public bool IsInternal { get; } + public bool IsModelCmdlet { get; } public bool IsDoNotExport { get; } + public bool IsNotSuggestDefaultParameterSet { get; } public string[] Profiles { get; } public Variant(string cmdletName, string variantName, CommandInfo info, CommandMetadata metadata, bool hasParameterSets = false, PsHelpInfo helpInfo = null) @@ -155,6 +168,8 @@ public Variant(string cmdletName, string variantName, CommandInfo info, CommandM Parameters = this.ToParameters().OrderBy(p => p.OrderCategory).ThenByDescending(p => p.IsMandatory).ToArray(); IsInternal = Attributes.OfType().Any(); IsDoNotExport = Attributes.OfType().Any(); + IsModelCmdlet = Attributes.OfType().Any(); + IsNotSuggestDefaultParameterSet = Attributes.OfType().Any(); CmdletOnlyParameters = Parameters.Where(p => !p.Categories.Any(c => c == ParameterCategory.Azure || c == ParameterCategory.Runtime)).ToArray(); Profiles = Attributes.OfType().SelectMany(pa => pa.Profiles).ToArray(); } @@ -210,6 +225,7 @@ public ParameterGroup(string parameterName, Parameter[] parameters, string[] all HasValidateNotNull = Parameters.SelectMany(p => p.Attributes.OfType()).Any(); HasAllowEmptyArray = Parameters.SelectMany(p => p.Attributes.OfType()).Any(); CompleterInfo = Parameters.Select(p => p.CompleterInfoAttribute).FirstOrDefault()?.ToCompleterInfo() + ?? Parameters.Select(p => p.PSArgumentCompleterAttribute).FirstOrDefault()?.ToPSArgumentCompleterInfo() ?? Parameters.Select(p => p.ArgumentCompleterAttribute).FirstOrDefault()?.ToCompleterInfo(); DefaultInfo = Parameters.Select(p => p.DefaultInfoAttribute).FirstOrDefault()?.ToDefaultInfo(this) ?? Parameters.Select(p => p.DefaultValueAttribute).FirstOrDefault(dv => dv != null)?.ToDefaultInfo(this); @@ -244,7 +260,6 @@ internal class Parameter public ParameterMetadata Metadata { get; } public PsParameterHelpInfo HelpInfo { get; } public Type ParameterType { get; } - public Attribute[] Attributes { get; } public ParameterCategory[] Categories { get; } public ParameterCategory OrderCategory { get; } @@ -254,6 +269,7 @@ internal class Parameter public bool SupportsWildcards { get; } public CompleterInfoAttribute CompleterInfoAttribute { get; } public ArgumentCompleterAttribute ArgumentCompleterAttribute { get; } + public PSArgumentCompleterAttribute PSArgumentCompleterAttribute { get; } public bool ValueFromPipeline { get; } public bool ValueFromPipelineByPropertyName { get; } @@ -286,7 +302,8 @@ public Parameter(string variantName, string parameterName, ParameterMetadata met } SupportsWildcards = Attributes.OfType().Any(); CompleterInfoAttribute = Attributes.OfType().FirstOrDefault(); - ArgumentCompleterAttribute = Attributes.OfType().FirstOrDefault(); + PSArgumentCompleterAttribute = Attributes.OfType().FirstOrDefault(); + ArgumentCompleterAttribute = Attributes.OfType().FirstOrDefault(attr => !attr.GetType().Equals(typeof(PSArgumentCompleterAttribute))); ValueFromPipeline = ParameterAttribute.ValueFromPipeline; ValueFromPipelineByPropertyName = ParameterAttribute.ValueFromPipelineByPropertyName; @@ -295,10 +312,10 @@ public Parameter(string variantName, string parameterName, ParameterMetadata met IsMandatory = ParameterAttribute.Mandatory; var complexParameterName = ParameterName.ToUpperInvariant(); - var complexMessage = $"{Environment.NewLine}To construct, see NOTES section for {complexParameterName} properties and create a hash table."; + var complexMessage = $"{Environment.NewLine}"; var description = ParameterAttribute.HelpMessage.NullIfEmpty() ?? HelpInfo.Description.NullIfEmpty() ?? InfoAttribute?.Description.NullIfEmpty() ?? String.Empty; // Remove the complex type message as it will be reinserted if this is a complex type - description = description.NormalizeNewLines().Replace(complexMessage, String.Empty).Replace(complexMessage.ToPsSingleLine(), String.Empty); + description = description.NormalizeNewLines(); // Make an InfoAttribute for processing only if one isn't provided InfoAttribute = Attributes.OfType().FirstOrDefault() ?? new InfoAttribute { PossibleTypes = new[] { ParameterType.Unwrap() }, Required = IsMandatory }; // Set the description if the InfoAttribute does not have one since they are exported without a description @@ -318,7 +335,7 @@ internal class ComplexInterfaceInfo public bool Required { get; } public bool ReadOnly { get; } public string Description { get; } - + public ComplexInterfaceInfo[] NestedInfos { get; } public bool IsComplexInterface { get; } @@ -335,7 +352,7 @@ public ComplexInterfaceInfo(string name, Type type, InfoAttribute infoAttribute, var unwrappedType = Type.Unwrap(); var hasBeenSeen = seenTypes?.Contains(unwrappedType) ?? false; (seenTypes ?? (seenTypes = new List())).Add(unwrappedType); - NestedInfos = hasBeenSeen ? new ComplexInterfaceInfo[]{} : + NestedInfos = hasBeenSeen ? new ComplexInterfaceInfo[] { } : unwrappedType.GetInterfaces() .Concat(InfoAttribute.PossibleTypes) .SelectMany(pt => pt.GetProperties() @@ -366,6 +383,7 @@ internal class CommentInfo public string OnlineVersion { get; } public string[] RelatedLinks { get; } + public string[] ExternalUrls { get; } private const string HelpLinkPrefix = @"https://learn.microsoft.com/powershell/module/"; @@ -391,6 +409,9 @@ public CommentInfo(VariantGroup variantGroup) var moduleName = variantGroup.RootModuleName == "" ? variantGroup.ModuleName.ToLowerInvariant() : variantGroup.RootModuleName.ToLowerInvariant(); OnlineVersion = helpInfo.OnlineVersion?.Uri.NullIfEmpty() ?? $@"{HelpLinkPrefix}{moduleName}/{variantGroup.CmdletName.ToLowerInvariant()}"; RelatedLinks = helpInfo.RelatedLinks.Select(rl => rl.Text).ToArray(); + + // Get external urls from attribute + ExternalUrls = variantGroup.Variants.SelectMany(v => v.Attributes).OfType()?.Select(e => e.Url)?.Distinct()?.ToArray(); } } @@ -420,11 +441,22 @@ public CompleterInfo(ArgumentCompleterAttribute completerAttribute) } } + internal class PSArgumentCompleterInfo : CompleterInfo + { + public string[] ResourceTypes { get; } + + public PSArgumentCompleterInfo(PSArgumentCompleterAttribute completerAttribute) : base(completerAttribute) + { + ResourceTypes = completerAttribute.ResourceTypes; + } + } + internal class DefaultInfo { public string Name { get; } public string Description { get; } public string Script { get; } + public string SetCondition { get; } public ParameterGroup ParameterGroup { get; } public DefaultInfo(DefaultInfoAttribute infoAttribute, ParameterGroup parameterGroup) @@ -432,6 +464,7 @@ public DefaultInfo(DefaultInfoAttribute infoAttribute, ParameterGroup parameterG Name = infoAttribute.Name; Description = infoAttribute.Description; Script = infoAttribute.Script; + SetCondition = infoAttribute.SetCondition; ParameterGroup = parameterGroup; } @@ -479,7 +512,8 @@ public static Parameter[] ToParameters(this Variant variant) parameterHelp = parameterHelp.Where(ph => (!ph.ParameterSetNames.Any() || ph.ParameterSetNames.Any(psn => psn == variant.VariantName || psn == AllParameterSets)) && ph.Name != "IncludeTotalCount"); } var result = parameters.Select(p => new Parameter(variant.VariantName, p.Key, p.Value, parameterHelp.FirstOrDefault(ph => ph.Name == p.Key))); - if (variant.SupportsPaging) { + if (variant.SupportsPaging) + { // If supportsPaging is set, we will need to add First and Skip parameters since they are treated as common parameters which as not contained on Metadata>parameters variant.Info.Parameters["First"].Attributes.OfType().FirstOrDefault(pa => pa.ParameterSetName == variant.VariantName || pa.ParameterSetName == AllParameterSets).HelpMessage = "Gets only the first 'n' objects."; variant.Info.Parameters["Skip"].Attributes.OfType().FirstOrDefault(pa => pa.ParameterSetName == variant.VariantName || pa.ParameterSetName == AllParameterSets).HelpMessage = "Ignores the first 'n' objects and then gets the remaining objects."; @@ -507,7 +541,7 @@ public static ComplexInterfaceInfo ToComplexInterfaceInfo(this InfoAttribute inf public static CompleterInfo ToCompleterInfo(this CompleterInfoAttribute infoAttribute) => new CompleterInfo(infoAttribute); public static CompleterInfo ToCompleterInfo(this ArgumentCompleterAttribute completerAttribute) => new CompleterInfo(completerAttribute); - + public static PSArgumentCompleterInfo ToPSArgumentCompleterInfo(this PSArgumentCompleterAttribute completerAttribute) => new PSArgumentCompleterInfo(completerAttribute); public static DefaultInfo ToDefaultInfo(this DefaultInfoAttribute infoAttribute, ParameterGroup parameterGroup) => new DefaultInfo(infoAttribute, parameterGroup); public static DefaultInfo ToDefaultInfo(this PSDefaultValueAttribute defaultValueAttribute, ParameterGroup parameterGroup) => new DefaultInfo(defaultValueAttribute, parameterGroup); } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsAttributes.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsAttributes.cs index babdad4868ac..de078e47e4aa 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsAttributes.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsAttributes.cs @@ -22,6 +22,11 @@ public class DoNotExportAttribute : Attribute { } + [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)] + public class ModelCmdletAttribute : Attribute + { + } + [AttributeUsage(AttributeTargets.Class)] public class InternalExportAttribute : Attribute { @@ -55,6 +60,11 @@ public class HttpPathAttribute : Attribute public string ApiVersion { get; set; } } + [AttributeUsage(AttributeTargets.Class)] + public class NotSuggestDefaultParameterSetAttribute : Attribute + { + } + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public class CategoryAttribute : Attribute { @@ -109,6 +119,11 @@ public enum PropertyOrigin Inlined } + [AttributeUsage(AttributeTargets.Property)] + public class ConstantAttribute : Attribute + { + } + [AttributeUsage(AttributeTargets.Property)] public class FormatTableAttribute : Attribute { diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsExtensions.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsExtensions.cs index 8f8612804f4f..7f0d7751362c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsExtensions.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsExtensions.cs @@ -13,6 +13,13 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PowerShell { internal static class PsExtensions { + public static PSObject AddMultipleTypeNameIntoPSObject(this object obj, string multipleTag = "#Multiple") + { + var psObj = new PSObject(obj); + psObj.TypeNames.Insert(0, $"{psObj.TypeNames[0]}{multipleTag}"); + return psObj; + } + // https://stackoverflow.com/a/863944/294804 // https://stackoverflow.com/a/4452598/294804 // https://stackoverflow.com/a/28701974/294804 diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsHelpers.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsHelpers.cs index 09cde60539c3..2c76f8fe724c 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsHelpers.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/BuildTime/PsHelpers.cs @@ -67,7 +67,7 @@ public static IEnumerable GetScriptHelpInfo(params string[] modulePath public static IEnumerable GetModuleCmdletsAndHelpInfo(PSCmdlet cmdlet, params string[] modulePaths) { - var getCmdletAndHelp = String.Join(" + ", modulePaths.Select(mp => + var getCmdletAndHelp = String.Join(" + ", modulePaths.Select(mp => $@"(Get-Command -Module (Import-Module '{mp}' -PassThru) | Where-Object {{ $_.CommandType -ne 'Alias' }} | ForEach-Object {{ @{{ CommandInfo = $_; HelpInfo = ( invoke-command {{ try {{ Get-Help -Name $_.Name -Full }} catch{{ '' }} }} ) }} }})" )); return (cmdlet?.RunScript(getCmdletAndHelp) ?? RunScript(getCmdletAndHelp)) @@ -88,7 +88,7 @@ public static Guid ReadGuidFromPsd1(string psd1Path) if (File.Exists(psd1Path)) { var currentGuid = File.ReadAllLines(psd1Path) - .FirstOrDefault(l => l.StartsWith(GuidStart))?.Split(new[] { " = " }, StringSplitOptions.RemoveEmptyEntries) + .FirstOrDefault(l => l.TrimStart().StartsWith(GuidStart.TrimStart()))?.Split(new[] { " = " }, StringSplitOptions.RemoveEmptyEntries) .LastOrDefault()?.Replace("'", String.Empty); guid = currentGuid != null ? Guid.Parse(currentGuid) : guid; } diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Context.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Context.cs new file mode 100644 index 000000000000..abfc7feb5ad8 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Context.cs @@ -0,0 +1,33 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime +{ + + using System; + using System.Linq; + using System.Collections; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using GetEventData = System.Func; + using static Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Extensions; + + /// + /// The IContext Interface defines the communication mechanism for input customization. + /// + /// + /// In the context, we will have client, pipeline, PSBoundParamters, default EventListener, Cancellation. + /// + public interface IContext + { + System.Management.Automation.InvocationInfo InvocationInformation { get; set; } + System.Threading.CancellationTokenSource CancellationTokenSource { get; set; } + System.Collections.Generic.IDictionary ExtensibleParameters { get; } + HttpPipeline Pipeline { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.SelfHelp Client { get; } + } +} diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Events.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Events.cs index 226127832e90..1e7b3acb11d5 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Events.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Events.cs @@ -22,6 +22,6 @@ public static partial class Events public const string FollowingNextLink = nameof(FollowingNextLink); public const string DelayBeforePolling = nameof(DelayBeforePolling); public const string Polling = nameof(Polling); - + public const string Progress = nameof(Progress); } -} \ No newline at end of file +} diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/ISendAsync.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/ISendAsync.cs index 5985bf169406..2ea6ebb1c418 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/ISendAsync.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/ISendAsync.cs @@ -11,6 +11,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime using System.Threading.Tasks; using System.Collections; using System.Linq; + using System; + /// /// The interface for sending an HTTP request across the wire. @@ -70,6 +72,7 @@ public interface ISendAsyncTerminalFactory public partial class HttpPipeline : ISendAsync { + private const int DefaultMaxRetry = 3; private ISendAsync pipeline; private ISendAsyncTerminalFactory terminal; private List steps = new List(); @@ -92,6 +95,111 @@ public HttpPipeline(ISendAsyncTerminalFactory terminalStep) /// public HttpPipeline Clone() => new HttpPipeline(terminal) { steps = this.steps.ToList(), pipeline = this.pipeline }; + private bool shouldRetry429(HttpResponseMessage response) + { + if (response.StatusCode == (System.Net.HttpStatusCode)429) + { + var retryAfter = response.Headers.RetryAfter; + if (retryAfter != null && retryAfter.Delta.HasValue) + { + return true; + } + } + return false; + } + /// + /// The step to handle 429 response with retry-after header. + /// + public async Task Retry429(HttpRequestMessage request, IEventListener callback, ISendAsync next) + { + int retryCount = int.MaxValue; + + try + { + try + { + retryCount = int.Parse(System.Environment.GetEnvironmentVariable("PS_HTTP_MAX_RETRIES_FOR_429")); + } + finally + { + retryCount = int.Parse(System.Environment.GetEnvironmentVariable("AZURE_PS_HTTP_MAX_RETRIES_FOR_429")); + } + } + catch (System.Exception) + { + //no action + } + var cloneRequest = await request.CloneWithContent(); + var response = await next.SendAsync(request, callback); + int count = 0; + while (shouldRetry429(response) && count++ < retryCount) + { + request = await cloneRequest.CloneWithContent(); + var retryAfter = response.Headers.RetryAfter; + await Task.Delay(retryAfter.Delta.Value, callback.Token); + await callback.Signal("Debug", $"Start to retry {count} time(s) on status code 429 after waiting {retryAfter.Delta.Value.TotalSeconds} seconds."); + response = await next.SendAsync(request, callback); + } + return response; + } + + private bool shouldRetryError(HttpResponseMessage response) + { + if (response.StatusCode >= System.Net.HttpStatusCode.InternalServerError) + { + if (response.StatusCode != System.Net.HttpStatusCode.NotImplemented && + response.StatusCode != System.Net.HttpStatusCode.HttpVersionNotSupported) + { + return true; + } + } + else if (response.StatusCode == System.Net.HttpStatusCode.RequestTimeout) + { + return true; + } + else if (response.StatusCode == (System.Net.HttpStatusCode)429 && response.Headers.RetryAfter == null) + { + return true; + } + return false; + } + + /// + /// Returns true if status code in HttpRequestExceptionWithStatus exception is greater + /// than or equal to 500 and not NotImplemented (501) or HttpVersionNotSupported (505). + /// Or it's 429 (TOO MANY REQUESTS) without Retry-After header. + /// + public async Task RetryError(HttpRequestMessage request, IEventListener callback, ISendAsync next) + { + int retryCount = DefaultMaxRetry; + + try + { + try + { + retryCount = int.Parse(System.Environment.GetEnvironmentVariable("PS_HTTP_MAX_RETRIES")); + } + finally + { + retryCount = int.Parse(System.Environment.GetEnvironmentVariable("AZURE_PS_HTTP_MAX_RETRIES")); + } + } + catch (System.Exception) + { + //no action + } + var cloneRequest = await request.CloneWithContent(); + var response = await next.SendAsync(request, callback); + int count = 0; + while (shouldRetryError(response) && count++ < retryCount) + { + await callback.Signal("Debug", $"Start to retry {count} time(s) on status code {response.StatusCode}"); + request = await cloneRequest.CloneWithContent(); + response = await next.SendAsync(request, callback); + } + return response; + } + public ISendAsyncTerminalFactory TerminalFactory { get => terminal; @@ -117,6 +225,11 @@ public ISendAsync Pipeline // create the pipeline from scratch. var next = terminal.Create(); + if (Convert.ToBoolean(@"true")) + { + next = (new SendAsyncFactory(Retry429)).Create(next) ?? next; + next = (new SendAsyncFactory(RetryError)).Create(next) ?? next; + } foreach (var factory in steps) { // skip factories that return null. diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InfoAttribute.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InfoAttribute.cs index ccb78e9df89b..f1415929a598 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InfoAttribute.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InfoAttribute.cs @@ -11,6 +11,9 @@ public class InfoAttribute : Attribute { public bool Required { get; set; } = false; public bool ReadOnly { get; set; } = false; + public bool Read { get; set; } = true; + public bool Create { get; set; } = true; + public bool Update { get; set; } = true; public Type[] PossibleTypes { get; set; } = new Type[0]; public string Description { get; set; } = ""; public string SerializedName { get; set; } = ""; @@ -30,5 +33,6 @@ public class DefaultInfoAttribute : Attribute public string Script { get; set; } = ""; public string Name { get; set; } = ""; public string Description { get; set; } = ""; + public string SetCondition { get; set; } = ""; } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InputHandler.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InputHandler.cs new file mode 100644 index 000000000000..cae168ab0d55 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/InputHandler.cs @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.Cmdlets +{ + public abstract class InputHandler + { + protected InputHandler NextHandler = null; + + public void SetNextHandler(InputHandler nextHandler) + { + this.NextHandler = nextHandler; + } + + public abstract void Process(Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IContext context); + } +} \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Nodes/Collections/XNodeArray.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Nodes/Collections/XNodeArray.cs index d91c37e54d1c..fa675cb87cd8 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Nodes/Collections/XNodeArray.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/Nodes/Collections/XNodeArray.cs @@ -21,6 +21,11 @@ internal XNodeArray(params JsonNode[] values) items = new List(values); } + internal XNodeArray(System.Collections.Generic.List values) + { + items = new List(values); + } + public override JsonNode this[int index] => items[index]; internal override JsonType? ElementType => null; diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/SerializationMode.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/SerializationMode.cs index 760f19a79083..8dc15112d88f 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/SerializationMode.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/SerializationMode.cs @@ -9,8 +9,10 @@ public enum SerializationMode { None = 0, IncludeHeaders = 1 << 0, - IncludeReadOnly = 1 << 1, - - IncludeAll = IncludeHeaders | IncludeReadOnly + IncludeRead = 1 << 1, + IncludeCreate = 1 << 2, + IncludeUpdate = 1 << 3, + IncludeAll = IncludeHeaders | IncludeRead | IncludeCreate | IncludeUpdate, + IncludeCreateOrUpdate = IncludeCreate | IncludeUpdate } } \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/TypeConverterExtensions.cs b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/TypeConverterExtensions.cs index fa70d8f2bed8..aafba9ac3bb2 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/TypeConverterExtensions.cs +++ b/generated/SelfHelp/SelfHelp.Autorest/generated/runtime/TypeConverterExtensions.cs @@ -62,6 +62,56 @@ internal static T[] SelectToArray(object source, System.Func return result.ToArray(); } + internal static System.Collections.Generic.List SelectToList(object source, System.Func converter) + { + // null begets null + if (source == null) + { + return null; + } + + // single values and strings are just encapsulated in the array. + if (source is string || !(source is System.Collections.IEnumerable)) + { + try + { + return new T[] { (T)converter(source) }.ToList(); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // silent conversion fail + } +#endif + return new T[0].ToList(); // empty result if couldn't convert. + } + + var result = new System.Collections.Generic.List(); + foreach (var each in (System.Collections.IEnumerable)source) + { + try + { + result.Add((T)converter(each)); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // silent conversion fail + } +#endif + } + return result; + } internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Collections.Generic.IDictionary dictionary) { if (null != dictionary) diff --git a/generated/SelfHelp/SelfHelp.Autorest/internal/Get-AzSelfHelpOperation.ps1 b/generated/SelfHelp/SelfHelp.Autorest/internal/Get-AzSelfHelpOperation.ps1 index fc5ef7861da9..93ca19be1f4b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/internal/Get-AzSelfHelpOperation.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/internal/Get-AzSelfHelpOperation.ps1 @@ -25,12 +25,12 @@ Returns list of operations. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation .Link https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpoperation #> function Get-AzSelfHelpOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -89,12 +89,18 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } $mapping = @{ List = 'Az.SelfHelp.private\Get-AzSelfHelpOperation_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/internal/ProxyCmdletDefinitions.ps1 b/generated/SelfHelp/SelfHelp.Autorest/internal/ProxyCmdletDefinitions.ps1 index fc5ef7861da9..93ca19be1f4b 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/internal/ProxyCmdletDefinitions.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/internal/ProxyCmdletDefinitions.ps1 @@ -25,12 +25,12 @@ Returns list of operations. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation +Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation .Link https://learn.microsoft.com/powershell/module/az.selfhelp/get-azselfhelpoperation #> function Get-AzSelfHelpOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -89,12 +89,18 @@ begin { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName + + $testPlayback = $false + $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } } $mapping = @{ List = 'Az.SelfHelp.private\Get-AzSelfHelpOperation_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + if ($wrappedCmd -eq $null) { + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Function) + } $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) diff --git a/generated/SelfHelp/SelfHelp.Autorest/resources/README.md b/generated/SelfHelp/SelfHelp.Autorest/resources/README.md new file mode 100644 index 000000000000..937f07f8fec2 --- /dev/null +++ b/generated/SelfHelp/SelfHelp.Autorest/resources/README.md @@ -0,0 +1,11 @@ +# Resources +This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. + +## Info +- Modifiable: yes +- Generated: no +- Committed: yes +- Packaged: no + +## Purpose +Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. \ No newline at end of file diff --git a/generated/SelfHelp/SelfHelp.Autorest/test-module.ps1 b/generated/SelfHelp/SelfHelp.Autorest/test-module.ps1 index c42703f42ddd..00777a289c0d 100644 --- a/generated/SelfHelp/SelfHelp.Autorest/test-module.ps1 +++ b/generated/SelfHelp/SelfHelp.Autorest/test-module.ps1 @@ -12,17 +12,17 @@ # Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code # is regenerated. # ---------------------------------------------------------------------------------- -param([switch]$Isolated, [switch]$Live, [switch]$Record, [switch]$Playback, [switch]$RegenerateSupportModule, [switch]$UsePreviousConfigForRecord, [string[]]$TestName) +param([switch]$NotIsolated, [switch]$Live, [switch]$Record, [switch]$Playback, [switch]$RegenerateSupportModule, [switch]$UsePreviousConfigForRecord, [string[]]$TestName) $ErrorActionPreference = 'Stop' -if(-not $Isolated) +if(-not $NotIsolated) { Write-Host -ForegroundColor Green 'Creating isolated process...' if ($PSBoundParameters.ContainsKey("TestName")) { $PSBoundParameters["TestName"] = $PSBoundParameters["TestName"] -join "," } $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path - & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -NotIsolated return } @@ -34,7 +34,7 @@ if ($PSBoundParameters.ContainsKey("TestName") -and ($TestName.count -eq 1) -and $ProgressPreference = 'SilentlyContinue' $baseName = $PSScriptRoot.BaseName $requireResourceModule = (($baseName -ne "Resources") -and ($Record.IsPresent -or $Live.IsPresent)) -. (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts:$false -Pester -Resources:$requireResourceModule -RegenerateSupportModule:$RegenerateSupportModule +. (Join-Path $PSScriptRoot 'check-dependencies.ps1') -NotIsolated -Accounts:$false -Pester -Resources:$requireResourceModule -RegenerateSupportModule:$RegenerateSupportModule . ("$PSScriptRoot\test\utils.ps1") if ($requireResourceModule) @@ -95,4 +95,4 @@ try } } -Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file +Write-Host -ForegroundColor Green '-------------Done-------------' From 3efacccda752275fdf381bd1bb042211ae1f7495 Mon Sep 17 00:00:00 2001 From: Vincent Dai <23257217+vidai-msft@users.noreply.github.com> Date: Mon, 26 May 2025 21:06:45 -0700 Subject: [PATCH 09/14] Update live test script for background jobs. (#27786) --- .azure-pipelines/live-test.yml | 8 -- .azure-pipelines/util/live-test-steps.yml | 2 +- .../Storage.Management/FileTests.ps1 | 78 +++++++++---------- tools/TestFx/Live/LiveTestUtility.psm1 | 2 +- 4 files changed, 40 insertions(+), 50 deletions(-) diff --git a/.azure-pipelines/live-test.yml b/.azure-pipelines/live-test.yml index b3ea3c9ddae1..27d627aa14f8 100644 --- a/.azure-pipelines/live-test.yml +++ b/.azure-pipelines/live-test.yml @@ -27,14 +27,6 @@ variables: DataLocation: $(Pipeline.Workspace)/$(ArtifactsName) SuppressAzurePowerShellBreakingChangeWarnings: true -schedules: -- cron: "0 19 * * *" - displayName: Daily Live Test - branches: - include: - - main - always: true - pr: none trigger: none diff --git a/.azure-pipelines/util/live-test-steps.yml b/.azure-pipelines/util/live-test-steps.yml index b338e1a82861..31df28f7309a 100644 --- a/.azure-pipelines/util/live-test-steps.yml +++ b/.azure-pipelines/util/live-test-steps.yml @@ -47,7 +47,7 @@ jobs: New-Item -Name $(ArtifactsName) -Path $(Pipeline.Workspace) -ItemType Directory -Force - task: DownloadPipelineArtifact@2 - condition: ${{ in(parameters.galleryName, 'DailyBuild', 'Sign') }} + condition: and(ne(variables['skipLatest'], 'true'), ${{ in(parameters.galleryName, 'DailyBuild', 'Sign') }}) displayName: Download artifacts from ${{ parameters.galleryName }} inputs: buildType: 'specific' diff --git a/src/Storage/LiveTests/Storage.Management/FileTests.ps1 b/src/Storage/LiveTests/Storage.Management/FileTests.ps1 index 41150f795e78..c9217d6979ee 100644 --- a/src/Storage/LiveTests/Storage.Management/FileTests.ps1 +++ b/src/Storage/LiveTests/Storage.Management/FileTests.ps1 @@ -8,29 +8,31 @@ Invoke-LiveTestScenario -Name "File basics" -Description "Test File basic operat $testfile512path = "$PSScriptRoot\TestFiles\testfile512" $localDestFile = "$PSScriptRoot\TestFiles\dest" $location = $rg.Location - $account = New-AzStorageAccount -ResourceGroupName $rgName -Name $storageAccountName -Location $location -SkuName Standard_GRS -AllowSharedKeyAccess $true -Tag @{"Az.Sec.DisableAllowSharedKeyAccess::Skip" = "For Powershell test."} - $ctx = $account.Context + $account = New-AzStorageAccount -ResourceGroupName $rgName -Name $storageAccountName -Location $location -SkuName Standard_GRS -AllowSharedKeyAccess $true -Tag @{ "Az.Sec.DisableAllowSharedKeyAccess::Skip" = "For Powershell test." } + $ctx = $account.Context $ctx1 = New-AzStorageContext -StorageAccountName $storageAccountName -StorageAccountKey (Get-AzStorageAccountKey -ResourceGroupName $rgName -Name $storageAccountName)[0].Value - $objectName1 = "filetest1.txt" # Removed the trailing dot temporarily to fix the case - $objectName2 = "filetest2.txt" + $objectName1 = "filetest1.txt" # Removed the trailing dot temporarily to fix the case + $objectName2 = "filetest2.txt" - #Create a file share + #Create a file share New-AzStorageShare $shareName -Context $ctx $Share = Get-AzStorageShare -Name $shareName -Context $ctx Assert-AreEqual $Share.Count 1 Assert-AreEqual $Share[0].Name $shareName # upload file - $t = Set-AzStorageFileContent -source $testfile512path -ShareName $shareName -Path $objectName1 -Force -Context $ctx -asjob - $t | wait-job - Assert-AreEqual $t.State "Completed" - Assert-AreEqual $t.Error $null - - # upload/remove file/dir with -DisAllowTrailingDot - $dirName1WithTrailingDot = "testdir1.." - $dirName1WithOutTrailingDot = "testdir1" - $objectPathWithoutTrailingDot = "testdir1/filetest1.txt" + $t = Set-AzStorageFileContent -source $testfile512path -ShareName $shareName -Path $objectName1 -Force -Context $ctx -AsJob + $t | Wait-Job + $t | Receive-Job + + Assert-AreEqual "Completed" $t.State + Assert-Null $t.Error + + # upload/remove file/dir with -DisAllowTrailingDot + $dirName1WithTrailingDot = "testdir1.." + $dirName1WithOutTrailingDot = "testdir1" + $objectPathWithoutTrailingDot = "testdir1/filetest1.txt" New-AzStorageDirectory -ShareName $shareName -Path $dirName1WithTrailingDot -Context $ctx1 -DisAllowTrailingDot $file11 = Set-AzStorageFileContent -source $testfile512path -ShareName $shareName -Path "$($dirName1WithTrailingDot)/$($objectName1)" -Force -Context $ctx1 -DisAllowTrailingDot $file = Get-AzStorageFile -ShareName $shareName -Path $objectPathWithoutTrailingDot -Context $ctx1 -DisAllowTrailingDot @@ -39,26 +41,23 @@ Invoke-LiveTestScenario -Name "File basics" -Description "Test File basic operat Remove-AzStorageFile -ShareName $shareName -Path "$($dirName1WithTrailingDot)/$($objectName1)" -Context $ctx1 -DisAllowTrailingDot Remove-AzStorageDirectory -ShareName $shareName -Path $dirName1WithTrailingDot -Context $ctx1 -DisAllowTrailingDot - # list file + # list file $file = Get-AzStorageFile -ShareName $shareName -Context $ctx Assert-AreEqual $file.Count 1 Assert-AreEqual $file[0].Name $objectName1 Assert-NotNull $file[0].ListFileProperties.Properties.ETag - if ($Env:OS -eq "Windows_NT") - { - Set-AzStorageFileContent -source $testfile512path -ShareName $shareName -Path $objectName1 -PreserveSMBAttribute -Force -Context $ctx + if ($Env:OS -eq "Windows_NT") { + Set-AzStorageFileContent -source $testfile512path -ShareName $shareName -Path $objectName1 -PreserveSMBAttribute -Force -Context $ctx } - else - { + else { Set-AzStorageFileContent -source $testfile512path -ShareName $shareName -Path $objectName1 -Force -Context $ctx } - $file = Get-AzStorageFile -ShareName $shareName -Context $ctx + $file = Get-AzStorageFile -ShareName $shareName -Context $ctx Assert-AreEqual $file.Count 1 Assert-AreEqual $file[0].Name $objectName1 Assert-NotNull $file[0].ListFileProperties.Properties.ETag - if ($Env:OS -eq "Windows_NT") - { + if ($Env:OS -eq "Windows_NT") { $localFileProperties = Get-ItemProperty $testfile512path Assert-AreEqual $localFileProperties.CreationTime.ToUniversalTime().Ticks $file[0].ListFileProperties.Properties.CreatedOn.ToUniversalTime().Ticks Assert-AreEqual $localFileProperties.LastWriteTime.ToUniversalTime().Ticks $file[0].ListFileProperties.Properties.LastWrittenOn.ToUniversalTime().Ticks @@ -72,23 +71,22 @@ Invoke-LiveTestScenario -Name "File basics" -Description "Test File basic operat Assert-AreEqual $file[0].Name $objectName1 Assert-AreEqual $file[1].Name $objectName2 - $t = Get-AzStorageFileContent -ShareName $shareName -Path $objectName1 -Destination $localDestFile -Force -Context $ctx -asjob - $t | wait-job - Assert-AreEqual $t.State "Completed" - Assert-AreEqual $t.Error $null + $t = Get-AzStorageFileContent -ShareName $shareName -Path $objectName1 -Destination $localDestFile -Force -Context $ctx -AsJob + $t | Wait-Job + $t | Receive-Job + + Assert-AreEqual "Completed" $t.State + Assert-Null $t.Error Assert-AreEqual (Get-FileHash -Path $localDestFile -Algorithm MD5).Hash (Get-FileHash -Path $testfile512path -Algorithm MD5).Hash - - if ($Env:OS -eq "Windows_NT") - { + + if ($Env:OS -eq "Windows_NT") { Get-AzStorageFileContent -ShareName $shareName -Path $objectName1 -Destination $localDestFile -PreserveSMBAttribute -Force -Context $ctx1 } - else - { + else { Get-AzStorageFileContent -ShareName $shareName -Path $objectName1 -Destination $localDestFile -Force -Context $ctx } Assert-AreEqual (Get-FileHash -Path $localDestFile -Algorithm MD5).Hash (Get-FileHash -Path $testfile512path -Algorithm MD5).Hash - if ($Env:OS -eq "Windows_NT") - { + if ($Env:OS -eq "Windows_NT") { $file = Get-AzStorageFile -ShareName $shareName -Path $objectName1 -Context $ctx1 $localFileProperties = Get-ItemProperty $testfile512path Assert-AreEqual $localFileProperties.CreationTime.ToUniversalTime().Ticks $file[0].FileProperties.SmbProperties.FileCreatedOn.ToUniversalTime().Ticks @@ -100,22 +98,22 @@ Invoke-LiveTestScenario -Name "File basics" -Description "Test File basic operat $file = Get-AzStorageFile -ShareName $shareName -Path $objectName1 -Context $ctx $file2 = Rename-AzStorageFile -ShareName $shareName -SourcePath $objectName1 -DestinationPath $fileName1 -Context $ctx - Assert-AreEqual $file2.Name $fileName1 + Assert-AreEqual $file2.Name $fileName1 Assert-AreEqual $file.FileProperties.ContentType $file2.FileProperties.ContentType Assert-AreEqual $file.FileProperties.ContentLength $file2.FileProperties.ContentLength $file3 = $file2 | Rename-AzStorageFile -DestinationPath $fileName1 -Context $ctx1 -Force - Assert-AreEqual $file3.Name $fileName1 + Assert-AreEqual $file3.Name $fileName1 Assert-AreEqual $file2.FileProperties.ContentType $file3.FileProperties.ContentType Assert-AreEqual $file2.FileProperties.ContentLength $file3.FileProperties.ContentLength - + Remove-AzStorageFile -ShareName $shareName -Path $fileName1 -Context $ctx $file = Get-AzStorageFile -ShareName $shareName -Context $ctx Assert-AreEqual $file.Count 1 Assert-AreEqual $file[0].Name $objectName2 $dirName = "filetestdir" - New-AzStorageDirectory -ShareName $shareName -Path $dirName -Context $ctx + New-AzStorageDirectory -ShareName $shareName -Path $dirName -Context $ctx $file = Get-AzStorageShare -Name $shareName -Context $ctx1 | Get-AzStorageFile -ExcludeExtendedInfo Assert-AreEqual $file.Count 2 Assert-AreEqual $file[0].Name $dirName @@ -125,7 +123,7 @@ Invoke-LiveTestScenario -Name "File basics" -Description "Test File basic operat Assert-AreEqual $file[1].GetType().Name "AzureStorageFile" Assert-Null $file[1].ListFileProperties.Properties.ETag - $newDir = "new" + $dirName # + ".." Removed the trailing dots temporarily to fix the case + $newDir = "new" + $dirName # + ".." Removed the trailing dots temporarily to fix the case $dir = Get-AzStorageFile -ShareName $shareName -Path $dirName -Context $ctx $dir2 = Rename-AzStorageDirectory -ShareName $shareName -SourcePath $dirName -DestinationPath $newDir -Context $ctx1 Assert-AreEqual $newDir $dir2.Name @@ -146,4 +144,4 @@ Invoke-LiveTestScenario -Name "File basics" -Description "Test File basic operat # Clean Storage Account Remove-AzStorageShare -Name $shareName -Force -Context $ctx -} \ No newline at end of file +} diff --git a/tools/TestFx/Live/LiveTestUtility.psm1 b/tools/TestFx/Live/LiveTestUtility.psm1 index eb0e5756e936..9903c922d060 100644 --- a/tools/TestFx/Live/LiveTestUtility.psm1 +++ b/tools/TestFx/Live/LiveTestUtility.psm1 @@ -429,7 +429,7 @@ function Clear-LiveTestResources { param ( [Parameter(Mandatory, Position = 0)] [ValidateNotNullOrEmpty()] - [Alias("ResourceGroupname")] + [Alias("ResourceGroupName")] [string] $Name ) From 90958ba420843806bd7e86d91d4e72a65b5ddc3c Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Wed, 28 May 2025 00:21:46 -0400 Subject: [PATCH 10/14] fix default parameter for Placement Feature in New-AzVM (#27858) --- .../Compute/VirtualMachine/Operation/NewAzureVMCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs b/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs index 05549c9c050b..6d2f77d7e56b 100644 --- a/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs +++ b/src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs @@ -1161,7 +1161,8 @@ public void DefaultExecuteCmdlet() SecurityProfile = this.VM.SecurityProfile, CapacityReservation = this.VM.CapacityReservation, UserData = this.VM.UserData, - PlatformFaultDomain = this.VM.PlatformFaultDomain + PlatformFaultDomain = this.VM.PlatformFaultDomain, + Placement = this.VM.Placement }; Dictionary> auxAuthHeader = null; From ad9779a9b1da909efa90973251171bdaa5ed279d Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 28 May 2025 12:29:02 +0800 Subject: [PATCH 11/14] Comment unlisted packages in azpreview.psd1 (#27861) --- tools/AzPreview/AzPreview.psd1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index fd5885476111..a80135993ba7 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -190,7 +190,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.Orbital'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.PaloAltoNetworks'; RequiredVersion = '0.3.1'; }, @{ModuleName = 'Az.Peering'; RequiredVersion = '0.5.0'; }, - @{ModuleName = 'Az.Pinecone'; RequiredVersion = '0.1.0'; }, + #@{ModuleName = 'Az.Pinecone'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.7.1'; }, @{ModuleName = 'Az.Portal'; RequiredVersion = '0.4.0'; }, @{ModuleName = 'Az.PostgreSql'; RequiredVersion = '1.2.0'; }, @@ -242,7 +242,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.VMware'; RequiredVersion = '0.7.2'; }, @{ModuleName = 'Az.VoiceServices'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Websites'; RequiredVersion = '3.4.1'; }, - @{ModuleName = 'Az.WeightsAndBiases'; RequiredVersion = '0.1.0'; }, + #@{ModuleName = 'Az.WeightsAndBiases'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.WindowsIotServices'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Workloads'; RequiredVersion = '1.0.0'; }) From 7c65eb39dbd6eb82d183f9ecb1ff8a84cf0fa69a Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 28 May 2025 14:29:35 +0800 Subject: [PATCH 12/14] Fix names in psd1 (#27860) --- src/AksArc/AksArc/Az.AksArc.psd1 | 4 ++-- src/AksArc/AksArc/ChangeLog.md | 1 + .../Az.AppComplianceAutomation.psd1 | 4 ++-- .../AppComplianceAutomation/ChangeLog.md | 1 + src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 | 4 ++-- src/ArcGateway/ArcGateway/ChangeLog.md | 1 + src/Astro/Astro/Az.Astro.psd1 | 4 ++-- src/Astro/Astro/ChangeLog.md | 1 + .../BillingBenefits/Az.BillingBenefits.psd1 | 4 ++-- src/BillingBenefits/BillingBenefits/ChangeLog.md | 1 + src/Chaos/Chaos/Az.Chaos.psd1 | 4 ++-- src/Chaos/Chaos/ChangeLog.md | 1 + src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 | 4 ++-- src/ComputeFleet/ComputeFleet/ChangeLog.md | 1 + .../ComputeSchedule/Az.ComputeSchedule.psd1 | 4 ++-- src/ComputeSchedule/ComputeSchedule/ChangeLog.md | 1 + src/CostManagement/CostManagement/Az.CostManagement.psd1 | 8 +++----- src/CostManagement/CostManagement/ChangeLog.md | 1 + src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 | 4 ++-- src/DeviceRegistry/DeviceRegistry/ChangeLog.md | 1 + src/Fabric/Fabric/Az.Fabric.psd1 | 4 ++-- src/Fabric/Fabric/ChangeLog.md | 1 + src/Informatica/Informatica/Az.Informatica.psd1 | 4 ++-- src/Informatica/Informatica/ChangeLog.md | 1 + .../KubernetesRuntime/Az.KubernetesRuntime.psd1 | 4 ++-- src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md | 1 + src/Mdp/Mdp/Az.Mdp.psd1 | 4 ++-- src/Mdp/Mdp/ChangeLog.md | 1 + src/Oracle/Oracle/Az.Oracle.psd1 | 4 ++-- src/Oracle/Oracle/ChangeLog.md | 1 + src/Pinecone/Pinecone/Az.Pinecone.psd1 | 4 ++-- src/StorageAction/StorageAction/Az.StorageAction.psd1 | 4 ++-- src/StorageAction/StorageAction/ChangeLog.md | 1 + .../WeightsAndBiases/Az.WeightsAndBiases.psd1 | 4 ++-- 34 files changed, 53 insertions(+), 39 deletions(-) diff --git a/src/AksArc/AksArc/Az.AksArc.psd1 b/src/AksArc/AksArc/Az.AksArc.psd1 index 0d75172c5c72..3279c31e3526 100644 --- a/src/AksArc/AksArc/Az.AksArc.psd1 +++ b/src/AksArc/AksArc/Az.AksArc.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: AksArc cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -103,7 +103,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','AksArc' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/AksArc/AksArc/ChangeLog.md b/src/AksArc/AksArc/ChangeLog.md index aff1374192b7..9138d5b95e60 100644 --- a/src/AksArc/AksArc/ChangeLog.md +++ b/src/AksArc/AksArc/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.3 * Upgraded nuget package to signed package. diff --git a/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 b/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 index 7c54565c769b..49ae6653daaf 100644 --- a/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 +++ b/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: AppComplianceAutomation cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -103,7 +103,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', '{ModuleNamePlaceHolder}' + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'AppComplianceAutomation' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md b/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md index 9b8415cce482..c5fe5973a142 100644 --- a/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md +++ b/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.3 * Upgraded nuget package to signed package. diff --git a/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 b/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 index 3edff518e49c..b6e8b8362431 100644 --- a/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 +++ b/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: ArcGateway cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -96,7 +96,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','ArcGateway' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/ArcGateway/ArcGateway/ChangeLog.md b/src/ArcGateway/ArcGateway/ChangeLog.md index 0978eb342247..5ab4548a1a45 100644 --- a/src/ArcGateway/ArcGateway/ChangeLog.md +++ b/src/ArcGateway/ArcGateway/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/Astro/Astro/Az.Astro.psd1 b/src/Astro/Astro/Az.Astro.psd1 index 34856bd97513..c429807266fc 100644 --- a/src/Astro/Astro/Az.Astro.psd1 +++ b/src/Astro/Astro/Az.Astro.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Astro cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -96,7 +96,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','Astro' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/Astro/Astro/ChangeLog.md b/src/Astro/Astro/ChangeLog.md index ae0ff2db144d..a3d0967a9bdc 100644 --- a/src/Astro/Astro/ChangeLog.md +++ b/src/Astro/Astro/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.2 * Upgraded nuget package to signed package. diff --git a/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 b/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 index e2210d7e68a5..eecb7f138e88 100644 --- a/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 +++ b/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: BillingBenefits cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -106,7 +106,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','BillingBenefits' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/BillingBenefits/BillingBenefits/ChangeLog.md b/src/BillingBenefits/BillingBenefits/ChangeLog.md index fd0ca016817e..807e6ac6ee26 100644 --- a/src/BillingBenefits/BillingBenefits/ChangeLog.md +++ b/src/BillingBenefits/BillingBenefits/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.2.0 * Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). diff --git a/src/Chaos/Chaos/Az.Chaos.psd1 b/src/Chaos/Chaos/Az.Chaos.psd1 index 50526cc9f8bf..477e0527ff6d 100644 --- a/src/Chaos/Chaos/Az.Chaos.psd1 +++ b/src/Chaos/Chaos/Az.Chaos.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Chaos cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -105,7 +105,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','Chaos' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/Chaos/Chaos/ChangeLog.md b/src/Chaos/Chaos/ChangeLog.md index 1dd41cbb1c23..799028649331 100644 --- a/src/Chaos/Chaos/ChangeLog.md +++ b/src/Chaos/Chaos/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 b/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 index fc1f1775b217..3e13f9edb42b 100644 --- a/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 +++ b/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: ComputeFleet cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -96,7 +96,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','ComputeFleet' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/ComputeFleet/ComputeFleet/ChangeLog.md b/src/ComputeFleet/ComputeFleet/ChangeLog.md index b34b229ac557..895fa32567ad 100644 --- a/src/ComputeFleet/ComputeFleet/ChangeLog.md +++ b/src/ComputeFleet/ComputeFleet/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.0 * Upgraded nuget package to signed package. diff --git a/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 b/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 index 2ec61eb5b6df..659b4f2503b7 100644 --- a/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 +++ b/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: ComputeSchedule cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -103,7 +103,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','ComputeSchedule' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/ComputeSchedule/ComputeSchedule/ChangeLog.md b/src/ComputeSchedule/ComputeSchedule/ChangeLog.md index ee6c64ce1b03..dc7f81061c6b 100644 --- a/src/ComputeSchedule/ComputeSchedule/ChangeLog.md +++ b/src/ComputeSchedule/ComputeSchedule/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.0 * Upgraded nuget package to signed package. diff --git a/src/CostManagement/CostManagement/Az.CostManagement.psd1 b/src/CostManagement/CostManagement/Az.CostManagement.psd1 index fd17a518a19d..cc5217d3d269 100644 --- a/src/CostManagement/CostManagement/Az.CostManagement.psd1 +++ b/src/CostManagement/CostManagement/Az.CostManagement.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: CostManagement cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -100,10 +100,8 @@ AliasesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ - PSData = @{ - - # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ResourceManager','ARM','PSModule','CostManagement' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/CostManagement/CostManagement/ChangeLog.md b/src/CostManagement/CostManagement/ChangeLog.md index aabea0eb959a..8006bc6935f7 100644 --- a/src/CostManagement/CostManagement/ChangeLog.md +++ b/src/CostManagement/CostManagement/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.4.1 * Removed extra empty lines in the output of `Invoke-AzCostManagementQuery`. [#27640] diff --git a/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 b/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 index 2f18bfa9c466..c72f7be43d5f 100644 --- a/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 +++ b/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: DeviceRegistry cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -102,7 +102,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','DeviceRegistry' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/DeviceRegistry/DeviceRegistry/ChangeLog.md b/src/DeviceRegistry/DeviceRegistry/ChangeLog.md index 4246d1e72d13..155926c807a0 100644 --- a/src/DeviceRegistry/DeviceRegistry/ChangeLog.md +++ b/src/DeviceRegistry/DeviceRegistry/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.0 * Upgraded nuget package to signed package. diff --git a/src/Fabric/Fabric/Az.Fabric.psd1 b/src/Fabric/Fabric/Az.Fabric.psd1 index 8a696b71df51..26a38f729335 100644 --- a/src/Fabric/Fabric/Az.Fabric.psd1 +++ b/src/Fabric/Fabric/Az.Fabric.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Fabric cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -98,7 +98,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','Fabric' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/Fabric/Fabric/ChangeLog.md b/src/Fabric/Fabric/ChangeLog.md index a9c818491e50..c9b23a3e055b 100644 --- a/src/Fabric/Fabric/ChangeLog.md +++ b/src/Fabric/Fabric/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/Informatica/Informatica/Az.Informatica.psd1 b/src/Informatica/Informatica/Az.Informatica.psd1 index 6983f0fc4665..5883d1ca82d3 100644 --- a/src/Informatica/Informatica/Az.Informatica.psd1 +++ b/src/Informatica/Informatica/Az.Informatica.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Informatica cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -107,7 +107,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','Informatica' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/Informatica/Informatica/ChangeLog.md b/src/Informatica/Informatica/ChangeLog.md index 0fb7e647d8cc..bc25218939bc 100644 --- a/src/Informatica/Informatica/ChangeLog.md +++ b/src/Informatica/Informatica/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 b/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 index d15641d170fa..e073cddb22bd 100644 --- a/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 +++ b/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: KubernetesRuntime cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -119,7 +119,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','KubernetesRuntime' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md b/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md index 1a4b3af06320..08492b0e2e15 100644 --- a/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md +++ b/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/Mdp/Mdp/Az.Mdp.psd1 b/src/Mdp/Mdp/Az.Mdp.psd1 index 95bcca2d8f98..dcd79c6e7f96 100644 --- a/src/Mdp/Mdp/Az.Mdp.psd1 +++ b/src/Mdp/Mdp/Az.Mdp.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Mdp cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -96,7 +96,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','Mdp' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/Mdp/Mdp/ChangeLog.md b/src/Mdp/Mdp/ChangeLog.md index b6df6cf646b1..75a8e1382a16 100644 --- a/src/Mdp/Mdp/ChangeLog.md +++ b/src/Mdp/Mdp/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/Oracle/Oracle/Az.Oracle.psd1 b/src/Oracle/Oracle/Az.Oracle.psd1 index c1e12f80c24f..b45bf61d829c 100644 --- a/src/Oracle/Oracle/Az.Oracle.psd1 +++ b/src/Oracle/Oracle/Az.Oracle.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Oracle cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -117,7 +117,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','Oracle' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/Oracle/Oracle/ChangeLog.md b/src/Oracle/Oracle/ChangeLog.md index cb4a7b25a68e..52a9bdcf9c1c 100644 --- a/src/Oracle/Oracle/ChangeLog.md +++ b/src/Oracle/Oracle/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 1.1.0 * Upgraded nuget package to signed package. diff --git a/src/Pinecone/Pinecone/Az.Pinecone.psd1 b/src/Pinecone/Pinecone/Az.Pinecone.psd1 index 68a426fad136..21cc04dc6fa5 100644 --- a/src/Pinecone/Pinecone/Az.Pinecone.psd1 +++ b/src/Pinecone/Pinecone/Az.Pinecone.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: Pinecone cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -95,7 +95,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', '{ModuleNamePlaceHolder}' + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'Pinecone' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/StorageAction/StorageAction/Az.StorageAction.psd1 b/src/StorageAction/StorageAction/Az.StorageAction.psd1 index a83dca1b4e9f..488f6c594a22 100644 --- a/src/StorageAction/StorageAction/Az.StorageAction.psd1 +++ b/src/StorageAction/StorageAction/Az.StorageAction.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: StorageAction cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -101,7 +101,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','{ModuleNamePlaceHolder}' + Tags = 'Azure','ResourceManager','ARM','PSModule','StorageAction' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/StorageAction/StorageAction/ChangeLog.md b/src/StorageAction/StorageAction/ChangeLog.md index f209a9f660d8..2c2844eb4d38 100644 --- a/src/StorageAction/StorageAction/ChangeLog.md +++ b/src/StorageAction/StorageAction/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed module name in module metadata ## Version 0.1.1 * Upgraded nuget package to signed package. diff --git a/src/WeightsAndBiases/WeightsAndBiases/Az.WeightsAndBiases.psd1 b/src/WeightsAndBiases/WeightsAndBiases/Az.WeightsAndBiases.psd1 index ffcee2a7c843..d0053f436290 100644 --- a/src/WeightsAndBiases/WeightsAndBiases/Az.WeightsAndBiases.psd1 +++ b/src/WeightsAndBiases/WeightsAndBiases/Az.WeightsAndBiases.psd1 @@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation' Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell: {ModuleNamePlaceHolder} cmdlets' +Description = 'Microsoft Azure PowerShell: WeightsAndBiases cmdlets' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -95,7 +95,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', '{ModuleNamePlaceHolder}' + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'WeightsAndBiases' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' From 93ca8dfbe4a751b2eb0563dbbcc008bf361be18c Mon Sep 17 00:00:00 2001 From: azure-powershell-bot <65331932+azure-powershell-bot@users.noreply.github.com> Date: Wed, 28 May 2025 06:45:01 +0000 Subject: [PATCH 13/14] remove ProgressAction parameters --- .../help/New-AzNetAppFilesVolumeGroup.md | 17 +-------------- .../help/Set-AzNetAppFilesAccount.md | 4 ++-- .../help/Update-AzNetAppFilesAccount.md | 4 ++-- src/Network/Network/help/New-AzNatGateway.md | 17 +-------------- .../Network/help/New-AzPublicIpAddress.md | 17 +-------------- .../Network/help/New-AzPublicIpPrefix.md | 17 +-------------- src/Network/Network/help/Set-AzNatGateway.md | 21 +++---------------- .../help/Set-AzVirtualNetworkSubnetConfig.md | 19 ++--------------- 8 files changed, 13 insertions(+), 103 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolumeGroup.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolumeGroup.md index 4413f5193a29..2082da5bf4b9 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolumeGroup.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolumeGroup.md @@ -63,7 +63,7 @@ New-AzNetAppFilesVolumeGroup -PoolName [-Name ] [-GroupDescript [-BackupReplicationSourceId ] [-BackupReplicationSchedule ] [-LogMirrorSize ] [-LogMirrorPerformance ] [-LogMirrorReplicationSourceId ] [-LogMirrorReplicationSchedule ] [-Tag ] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet @@ -1350,21 +1350,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ProximityPlacementGroup Default proximity placement group, for data, log, and if present the shared volume, in all volume groups. Specifies that the data, log, and shared volumes are to be created close to the VMs diff --git a/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesAccount.md b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesAccount.md index f861ae9a6020..bd9eafdb026f 100644 --- a/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesAccount.md +++ b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesAccount.md @@ -22,14 +22,14 @@ Set-AzNetAppFilesAccount -ResourceGroupName -Location -Name -Name [-ActiveDirectory ] - [-Tag ] [-DefaultProfile ] [-ProgressAction ] [-WhatIf] + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` Set-AzNetAppFilesAccount -Location -Name [-Tag ] -ResourceId - [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md index 06d407895666..2d33e2444a3e 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md @@ -28,7 +28,7 @@ Update-AzNetAppFilesAccount -ResourceGroupName [-Location ] -Na Update-AzNetAppFilesAccount -ResourceGroupName [-Location ] -Name -ResourceId [-ActiveDirectory ] [-Encryption ] [-Tag ] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet @@ -36,7 +36,7 @@ Update-AzNetAppFilesAccount -ResourceGroupName [-Location ] -Na Update-AzNetAppFilesAccount -ResourceGroupName [-Location ] -Name [-ActiveDirectory ] [-Encryption ] -InputObject [-Tag ] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/src/Network/Network/help/New-AzNatGateway.md b/src/Network/Network/help/New-AzNatGateway.md index c96b09e53f8b..eccdecee4bf6 100644 --- a/src/Network/Network/help/New-AzNatGateway.md +++ b/src/Network/Network/help/New-AzNatGateway.md @@ -17,7 +17,7 @@ New-AzNatGateway -ResourceGroupName -Name [-IdleTimeoutInMinut [-Sku ] [-Location ] [-Tag ] [-PublicIpAddress ] [-PublicIpAddressV6 ] [-PublicIpPrefix ] [-PublicIpPrefixV6 ] [-SourceVirtualNetwork ] [-Force] [-AsJob] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -145,21 +145,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -PublicIpAddress An array of public ip addresses associated with the nat gateway resource. diff --git a/src/Network/Network/help/New-AzPublicIpAddress.md b/src/Network/Network/help/New-AzPublicIpAddress.md index f2d14fb26806..2e15899eea99 100644 --- a/src/Network/Network/help/New-AzPublicIpAddress.md +++ b/src/Network/Network/help/New-AzPublicIpAddress.md @@ -20,7 +20,7 @@ New-AzPublicIpAddress [-Name ] -ResourceGroupName -Location ] [-DdosProtectionMode ] [-DdosProtectionPlanId ] [-ReverseFqdn ] [-IdleTimeoutInMinutes ] [-Zone ] [-IpAddress ] [-Tag ] [-Force] [-AsJob] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -336,21 +336,6 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -PublicIpPrefix Specifies the PSPublicIpPrefix from which to allocate the public IP address. diff --git a/src/Network/Network/help/New-AzPublicIpPrefix.md b/src/Network/Network/help/New-AzPublicIpPrefix.md index 504d40b5162e..be3a47dae988 100644 --- a/src/Network/Network/help/New-AzPublicIpPrefix.md +++ b/src/Network/Network/help/New-AzPublicIpPrefix.md @@ -16,7 +16,7 @@ Creates a Public IP Prefix New-AzPublicIpPrefix -Name -ResourceGroupName -Location [-Sku ] [-Tier ] -PrefixLength [-IpAddressVersion ] [-IpTag ] [-Zone ] [-CustomIpPrefix ] [-EdgeZone ] [-Tag ] [-Force] - [-AsJob] [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -203,21 +203,6 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceGroupName The resource group name. diff --git a/src/Network/Network/help/Set-AzNatGateway.md b/src/Network/Network/help/Set-AzNatGateway.md index 36c8587dffff..6255d6a3fc78 100644 --- a/src/Network/Network/help/Set-AzNatGateway.md +++ b/src/Network/Network/help/Set-AzNatGateway.md @@ -17,7 +17,7 @@ Update Nat Gateway Resource with Public Ip Address, Public Ip Prefix and IdleTim Set-AzNatGateway -ResourceGroupName -Name [-PublicIpAddress ] [-PublicIpAddressV6 ] [-PublicIpPrefix ] [-PublicIpPrefixV6 ] [-SourceVirtualNetwork ] [-AsJob] [-IdleTimeoutInMinutes ] - [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -26,7 +26,7 @@ Set-AzNatGateway -ResourceGroupName -Name [-PublicIpAddress

[-PublicIpAddress ] [-PublicIpAddressV6 ] [-PublicIpPrefix ] [-PublicIpPrefixV6 ] [-SourceVirtualNetwork ] [-AsJob] [-IdleTimeoutInMinutes ] [-DefaultProfile ] - [-ProgressAction ] [-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### SetByInputObjectParameterSet @@ -34,7 +34,7 @@ Set-AzNatGateway -ResourceId [-PublicIpAddress ] [-Publ Set-AzNatGateway -InputObject [-PublicIpAddress ] [-PublicIpAddressV6 ] [-PublicIpPrefix ] [-PublicIpPrefixV6 ] [-SourceVirtualNetwork ] [-AsJob] [-IdleTimeoutInMinutes ] - [-DefaultProfile ] [-ProgressAction ] [-WhatIf] [-Confirm] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -129,21 +129,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -PublicIpAddress An array of public ip addresses associated with the nat gateway resource. diff --git a/src/Network/Network/help/Set-AzVirtualNetworkSubnetConfig.md b/src/Network/Network/help/Set-AzVirtualNetworkSubnetConfig.md index 89848384523d..bbc648564f60 100644 --- a/src/Network/Network/help/Set-AzVirtualNetworkSubnetConfig.md +++ b/src/Network/Network/help/Set-AzVirtualNetworkSubnetConfig.md @@ -22,7 +22,7 @@ Set-AzVirtualNetworkSubnetConfig -Name -VirtualNetwork ] [-Delegation ] [-PrivateEndpointNetworkPoliciesFlag ] [-PrivateLinkServiceNetworkPoliciesFlag ] [-IpAllocation ] [-DefaultOutboundAccess ] - [-DefaultProfile ] [-ProgressAction ] [] + [-DefaultProfile ] [] ``` ### SetByResourceId @@ -34,7 +34,7 @@ Set-AzVirtualNetworkSubnetConfig -Name -VirtualNetwork ] [-Delegation ] [-PrivateEndpointNetworkPoliciesFlag ] [-PrivateLinkServiceNetworkPoliciesFlag ] [-IpAllocation ] [-DefaultOutboundAccess ] - [-DefaultProfile ] [-ProgressAction ] [] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -298,21 +298,6 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ProgressAction -{{ Fill ProgressAction Description }} - -```yaml -Type: System.Management.Automation.ActionPreference -Parameter Sets: (All) -Aliases: proga - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceId Specifies the Id of NAT Gateway resource associated with the subnet configuration. From affc01ac9ad8815f903b80f78042fed9a2d80796 Mon Sep 17 00:00:00 2001 From: azure-powershell-bot <65331932+azure-powershell-bot@users.noreply.github.com> Date: Wed, 28 May 2025 07:02:47 +0000 Subject: [PATCH 14/14] Bump Version for 14.1.0 --- ChangeLog.md | 105 + .../SyntaxChangeLog/SyntaxChangeLog-Az14.md | 11 + .../upcoming-breaking-changes.md | 681 +- setup/generate.ps1 | 2 +- src/Accounts/Accounts/Az.Accounts.psd1 | 6 +- src/Accounts/Accounts/ChangeLog.md | 2 + .../Accounts/Properties/AssemblyInfo.cs | 4 +- .../Accounts/Utilities/CommandMappings.json | 139 +- .../Properties/AssemblyInfo.cs | 4 +- .../Authentication/Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Authenticators/Properties/AssemblyInfo.cs | 4 +- src/AksArc/AksArc/Az.AksArc.psd1 | 8 +- src/AksArc/AksArc/ChangeLog.md | 2 + src/AksArc/AksArc/Properties/AssemblyInfo.cs | 4 +- .../Az.AppComplianceAutomation.psd1 | 16 +- .../AppComplianceAutomation/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 | 8 +- src/ArcGateway/ArcGateway/ChangeLog.md | 2 + .../ArcGateway/Properties/AssemblyInfo.cs | 4 +- src/Astro/Astro/Az.Astro.psd1 | 8 +- src/Astro/Astro/ChangeLog.md | 2 + src/Astro/Astro/Properties/AssemblyInfo.cs | 4 +- .../BillingBenefits/Az.BillingBenefits.psd1 | 8 +- .../BillingBenefits/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- src/Chaos/Chaos/Az.Chaos.psd1 | 8 +- src/Chaos/Chaos/ChangeLog.md | 2 + src/Chaos/Chaos/Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- src/Compute/Compute/Az.Compute.psd1 | 10 +- src/Compute/Compute/ChangeLog.md | 2 + .../Compute/Properties/AssemblyInfo.cs | 4 +- .../ComputeFleet/Az.ComputeFleet.psd1 | 8 +- src/ComputeFleet/ComputeFleet/ChangeLog.md | 2 + .../ComputeFleet/Properties/AssemblyInfo.cs | 4 +- .../ComputeSchedule/Az.ComputeSchedule.psd1 | 8 +- .../ComputeSchedule/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- .../CostManagement/Az.CostManagement.psd1 | 12 +- .../CostManagement/ChangeLog.md | 2 + .../CostManagement/Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../DataFactory/Az.DataFactory.psd1 | 10 +- src/DataFactory/DataFactory/ChangeLog.md | 2 + .../DataFactory/Properties/AssemblyInfo.cs | 4 +- .../DataFactoryV1/Properties/AssemblyInfo.cs | 4 +- .../DataFactoryV2/Properties/AssemblyInfo.cs | 4 +- .../DeviceRegistry/Az.DeviceRegistry.psd1 | 8 +- .../DeviceRegistry/ChangeLog.md | 2 + .../DeviceRegistry/Properties/AssemblyInfo.cs | 4 +- src/Fabric/Fabric/Az.Fabric.psd1 | 8 +- src/Fabric/Fabric/ChangeLog.md | 2 + src/Fabric/Fabric/Properties/AssemblyInfo.cs | 4 +- .../Informatica/Az.Informatica.psd1 | 8 +- src/Informatica/Informatica/ChangeLog.md | 2 + .../Informatica/Properties/AssemblyInfo.cs | 4 +- .../Az.KubernetesRuntime.psd1 | 8 +- .../KubernetesRuntime/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- src/Mdp/Mdp/Az.Mdp.psd1 | 8 +- src/Mdp/Mdp/ChangeLog.md | 2 + src/Mdp/Mdp/Properties/AssemblyInfo.cs | 4 +- src/Migrate/Migrate/Az.Migrate.psd1 | 10 +- src/Migrate/Migrate/ChangeLog.md | 2 + .../Migrate/Properties/AssemblyInfo.cs | 4 +- .../MobileNetwork/Az.MobileNetwork.psd1 | 20 +- src/MobileNetwork/MobileNetwork/ChangeLog.md | 2 + .../MobileNetwork/Properties/AssemblyInfo.cs | 4 +- src/MySql/MySql/Az.MySql.psd1 | 16 +- src/MySql/MySql/ChangeLog.md | 2 + src/MySql/MySql/Properties/AssemblyInfo.cs | 4 +- .../NetAppFiles/Az.NetAppFiles.psd1 | 11 +- src/NetAppFiles/NetAppFiles/ChangeLog.md | 2 + .../NetAppFiles/Properties/AssemblyInfo.cs | 4 +- .../NetworkFunction/Az.NetworkFunction.psd1 | 16 +- .../NetworkFunction/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- src/Oracle/Oracle/Az.Oracle.psd1 | 8 +- src/Oracle/Oracle/ChangeLog.md | 2 + src/Oracle/Oracle/Properties/AssemblyInfo.cs | 4 +- src/PostgreSql/PostgreSql/Az.PostgreSql.psd1 | 18 +- src/PostgreSql/PostgreSql/ChangeLog.md | 2 + .../PostgreSql/Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../RecoveryServices/Az.RecoveryServices.psd1 | 12 +- .../RecoveryServices/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 | 16 +- src/SelfHelp/SelfHelp/ChangeLog.md | 2 + .../SelfHelp/Properties/AssemblyInfo.cs | 4 +- .../ServiceLinker/Az.ServiceLinker.psd1 | 16 +- src/ServiceLinker/ServiceLinker/ChangeLog.md | 2 + .../ServiceLinker/Properties/AssemblyInfo.cs | 4 +- .../StorageAction/Az.StorageAction.psd1 | 8 +- src/StorageAction/StorageAction/ChangeLog.md | 2 + .../StorageAction/Properties/AssemblyInfo.cs | 4 +- .../StorageCache/Az.StorageCache.psd1 | 21 +- src/StorageCache/StorageCache/ChangeLog.md | 2 + .../StorageCache/Properties/AssemblyInfo.cs | 4 +- tools/Az/Az.psd1 | 168 +- tools/AzPreview/AzPreview.psd1 | 65 +- tools/AzPreview/ChangeLog.md | 183 + tools/Docs/az-ps-latest-1.csv | 38 +- tools/Docs/az-ps-latest-2.csv | 147 +- .../SerializedCmdlets/Az.Accounts.json | 162 +- .../SerializedCmdlets/Az.AksArc.json | 2726 +- .../Az.AppComplianceAutomation.json | 1520 +- .../SerializedCmdlets/Az.ArcGateway.json | 934 +- .../SerializedCmdlets/Az.Astro.json | 952 +- .../SerializedCmdlets/Az.BillingBenefits.json | 2 +- .../SerializedCmdlets/Az.Chaos.json | 3912 +- .../SerializedCmdlets/Az.Compute.json | 1958 +- .../SerializedCmdlets/Az.ComputeFleet.json | 722 +- .../SerializedCmdlets/Az.ComputeSchedule.json | 868 +- .../SerializedCmdlets/Az.CostManagement.json | 2 +- .../SerializedCmdlets/Az.DataFactory.json | 530 +- .../SerializedCmdlets/Az.DeviceRegistry.json | 1944 +- .../SerializedCmdlets/Az.Fabric.json | 1430 +- .../SerializedCmdlets/Az.Informatica.json | 2506 +- .../Az.KubernetesRuntime.json | 3071 +- .../SerializedCmdlets/Az.Mdp.json | 1046 +- .../SerializedCmdlets/Az.Migrate.json | 1172 +- .../SerializedCmdlets/Az.MobileNetwork.json | 62626 ++++++++++++---- .../SerializedCmdlets/Az.MySql.json | 8424 ++- .../SerializedCmdlets/Az.NetAppFiles.json | 3236 +- .../SerializedCmdlets/Az.NetworkFunction.json | 7645 +- .../SerializedCmdlets/Az.Oracle.json | 7696 +- .../SerializedCmdlets/Az.PostgreSql.json | 8052 +- .../Az.RecoveryServices.json | 1690 +- .../SerializedCmdlets/Az.SelfHelp.json | 13849 ++-- .../SerializedCmdlets/Az.ServiceLinker.json | 5508 +- .../SerializedCmdlets/Az.StorageAction.json | 1212 +- .../SerializedCmdlets/Az.StorageCache.json | 27562 +------ 146 files changed, 108860 insertions(+), 66212 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 28c7a98de087..bf65c59d9faa 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,108 @@ +## 14.1.0 - June 2025 +#### Az.Accounts 5.0.2 +* Upgrade Azure.Core to 1.45.0 + +#### Az.Compute 10.0.1 +* Added breaking change message for 'New-AzVM' and 'New-AzVmss' cmdlets. + +#### Az.DataFactory 1.19.3 +* Added more support for SparkV2 and HiveV2 connection properties. + +#### Az.Migrate 2.8.0 +* Implemented the Get-AzMigrateServerMigrationStatus cmdlet to retrieve the replication status of servers in Azure Migrate. +* Fixed bugs in 'New-AzMigrateLocalServerReplication' that caused HyperVSite or VMwareSite not found. + +#### Az.MySql 1.4.0 +- Enhanced 'Restore-AzMySqlFlexibleServer' functionality with GeoRestore support + +#### Az.Network 7.17.0 +* Added properties 'PublicIpAddressesV6', 'PublicIpPrefixesV6', and 'SourceVirtualNetwork' to NatGateway, as well as support for it for the following cmdlets: + - 'New-AzNatGateway' + - 'Set-AzNatGateway' +* Added property 'DefaultPublicNatGateway' to VirtualNetwork. +* Onboarded 'Microsoft.FluidRelay/fluidRelayServers' to private link cmdlets +* Added cmdlet 'Get-AzLoadBalancerRuleHealth' for Load Balancer Rule Health. +* Added property 'EnableConnectionTracking' to Load Balancing Rule, as well as support for it for the following cmdlets: + - 'Add-AzLoadBalancerRuleConfig' + - 'New-AzLoadBalancerRuleConfig' + - 'Set-AzLoadBalancerRuleConfig' +* Added cmdlet for migration of basic IP based deployment to Standard IP based VMSS deployments for VirtualNetworkGateways + - 'New-AzVirtualNetworkGatewayMigrationParameter' + - 'Invoke-AzVirtualNetworkGatewayPrepareMigration' + - 'Invoke-AzVirtualNetworkGatewayExecuteMigration' + - 'Invoke-AzVirtualNetworkGatewayCommitMigration' + - 'Invoke-AzVirtualNetworkGatewayAbortMigration' +* Added cmdlets for CRUD operations of NetworkSecurityPerimeter service + - Cmdlets for NetworkSecurityPerimeter operations + - 'New-AzNetworkSecurityPerimeter' + - 'Get-AzNetworkSecurityPerimeter' + - 'Update-AzNetworkSecurityPerimeter' + - 'Remove-AzNetworkSecurityPerimeter' + - Cmdlets for NetworkSecurityPerimeter profile operations + - 'New-AzNetworkSecurityPerimeterProfile' + - 'Get-AzNetworkSecurityPerimeterProfile' + - 'Remove-AzNetworkSecurityPerimeterProfile' + - Cmdlets for NetworkSecurityPerimeter association operations + - 'New-AzNetworkSecurityPerimeterAssociation' + - 'Get-AzNetworkSecurityPerimeterAssociation' + - 'Update-AzNetworkSecurityPerimeterAssociation' + - 'Remove-AzNetworkSecurityPerimeterAssociation' + - Cmdlets for NetworkSecurityPerimeter access rule operations + - 'New-AzNetworkSecurityPerimeterAccessRule' + - 'Get-AzNetworkSecurityPerimeterAccessRule' + - 'Update-AzNetworkSecurityPerimeterAccessRule' + - 'Remove-AzNetworkSecurityPerimeterAccessRule' + - Cmdlets for NetworkSecurityPerimeter link operations + - 'New-AzNetworkSecurityPerimeterLink' + - 'Get-AzNetworkSecurityPerimeterLink' + - 'Update-AzNetworkSecurityPerimeterLink' + - 'Remove-AzNetworkSecurityPerimeterLink' + - Cmdlets for NetworkSecurityPerimeter link reference operations + - 'Get-AzNetworkSecurityPerimeterLinkReference' + - 'Remove-AzNetworkSecurityPerimeterLinkReference' + - Cmdlets for NetworkSecurityPerimeter logging configuration operations + - 'New-AzNetworkSecurityPerimeterLoggingConfiguration' + - 'Get-AzNetworkSecurityPerimeterLoggingConfiguration' + - 'Update-AzNetworkSecurityPerimeterLoggingConfiguration' + - 'Remove-AzNetworkSecurityPerimeterLoggingConfiguration' + - Cmdlet to get NetworkSecurityPerimeter associable resource types + - 'Get-AzNetworkSecurityPerimeterAssociableResourceType' +* Updated cmdlet to add the property of 'PartnerManagedResource', and updated corresponding cmdlets. + - 'Get-AzNetworkVirtualAppliance' +* Added cmdlet to retrieve boot diagnostic logs for a given NetworkVirtualAppliance VM instance: + - 'Get-AzNetworkVirtualApplianceBootDiagnostics' +* Added etag property to Azure Virtual Network Manager -> IpamPool, VerifierWorkspace data models +* Onboarded ExpressRoute cmdlets to manage Microsoft Peering Advertised prefix validation: + - 'Get-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' + - 'Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' + - 'Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' + - 'Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' +* Updated cmdlets to support Advanced Connectivity feature for Azure VPN gateway. + - 'New-AzVirtualNetworkGateway' + - 'Get-AzVirtualNetworkGateway' + - 'Get-AzVirtualNetworkGatewayConnection' +* Deleted NetworkWatcher cmdlets for 'Classic' Connection Monitor + - 'Start-AzNetworkWatcherConnectionMonitor' + - 'Get-AzNetworkWatcherConnectionMonitorReport' +* Updated cmdlets to support topology-specific connectivity capabilities: + - 'New-AzNetworkManagerConnectivityConfiguration' + - 'Set-AzNetworkManagerConnectivityConfiguration' + - 'Get-AzNetworkManagerConnectivityConfiguration' + +#### Az.Oracle 1.1.1 +* Fixed module name in module metadata + +#### Az.PostgreSql 1.3.0 +* Added support for Geo-restore in 'Restore-AzPostgreSqlFlexibleServer' cmdlets. + - Automatically determined the paired region for the source server during geo-restore. + - Enhanced validation for private access and DNS zone configurations during restore operations. + +#### Az.RecoveryServices 7.7.2 +* Added fix for resume protection with AzureFileshare. +* Added fix for Get backup item for MSSQL soft deleted items. +* Added check to compare the VM resource group in the list of VMs returned for registration. +* Added RetainRecoveryPointsAsPerPolicy as MUA protected operation in Disable-AzRecoveryServicesBackupProtection cmdlet. + ## 14.0.0 - May 2025 #### Az.Accounts 5.0.0 * Changed the default output access token of 'Get-AzAccessToken' from plain text to 'SecureString'. diff --git a/documentation/SyntaxChangeLog/SyntaxChangeLog-Az14.md b/documentation/SyntaxChangeLog/SyntaxChangeLog-Az14.md index 465dbef1b808..de8c51765017 100644 --- a/documentation/SyntaxChangeLog/SyntaxChangeLog-Az14.md +++ b/documentation/SyntaxChangeLog/SyntaxChangeLog-Az14.md @@ -1,3 +1,13 @@ +## 14.1.0 - June 2025 +#### Az.Migrate 2.8.0 +* Added cmdlet `Get-AzMigrateServerMigrationStatus` +#### Az.MySql 1.4.0 +* Modified cmdlet `Restore-AzMySqlFlexibleServer` + - Added parameters `-Location`, `-UseGeoRestore`, `-Sku`, `-Tag` +#### Az.PostgreSql 1.3.0 +* Modified cmdlet `Restore-AzPostgreSqlFlexibleServer` + - Added parameters `-UseGeoRestore`, `-Sku`, `-Tag` + ## 14.0.0 - May 2025 #### Az.Aks 7.0.0 * Modified cmdlet `Get-AzAksMaintenanceConfiguration` @@ -493,3 +503,4 @@ - Added parameter `-Force` + diff --git a/documentation/breaking-changes/upcoming-breaking-changes.md b/documentation/breaking-changes/upcoming-breaking-changes.md index b2302313645b..c512e05f5bd2 100644 --- a/documentation/breaking-changes/upcoming-breaking-changes.md +++ b/documentation/breaking-changes/upcoming-breaking-changes.md @@ -1,126 +1,5 @@ # Upcoming breaking changes in Azure PowerShell -## Az.Accounts - -### `Get-AzAccessToken` - -- Cmdlet breaking-change will happen to all parameter sets - - The Token property of the output type will be changed from String to SecureString. Add the [-AsSecureString] switch to avoid the impact of this upcoming breaking change. - - This change is expected to take effect from Az.Accounts version: 5.0.0 and Az version: 14.0.0 - -## Az.Aks - -### `Get-AzAksMaintenanceConfiguration` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IMaintenanceConfiguration' - - The following properties in the output type are being deprecated : 'TimeInWeek Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek' 'NotAllowedTime Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan' - - The following properties are being added to the output type : 'TimeInWeek System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]' 'NotAllowedTime System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]' - - Change description : The type of property 'TimeInWeek' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek[]' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]',The type of property 'NotAllowedTime' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]' - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -### `Get-AzAksManagedClusterOSOption` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOSOptionProfile' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProfile' - - The following properties in the output type are being deprecated : 'OSOptionPropertyList Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty' - - The following properties are being added to the output type : 'OSOptionPropertyList System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty]' - - Change description : The type of property 'OSOptionPropertyList' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOSOptionProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOSOptionProperty]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -### `Get-AzAksManagedClusterOutboundNetworkDependencyEndpoint` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOutboundEnvironmentEndpoint' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOutboundEnvironmentEndpoint' - - The following properties in the output type are being deprecated : 'Endpoint Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency' - - The following properties are being added to the output type : 'Endpoint System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency]' - - Change description : The type of property 'Endpoint' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IOutboundEnvironmentEndpoint' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IEndpointDependency]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -### `Get-AzAksNodePoolUpgradeProfile` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IAgentPoolUpgradeProfile' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfile' - - The following properties in the output type are being deprecated : 'Upgrade Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem' - - The following properties are being added to the output type : 'Upgrade System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem]' - - Change description : The type of property 'Upgrade' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IAgentPoolUpgradeProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAgentPoolUpgradeProfilePropertiesUpgradesItem]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -### `Get-AzAksUpgradeProfile` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IManagedClusterUpgradeProfile' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterUpgradeProfile' - - The following properties in the output type are being deprecated : 'AgentPoolProfile Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile' 'ControlPlaneProfileUpgrade Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem' - - The following properties are being added to the output type : 'AgentPoolProfile System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile]' 'ControlPlaneProfileUpgrade System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem]' - - Change description : The type of property 'AgentPoolProfile' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IManagedClusterUpgradeProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfile]'.,The type of property 'ControlPlaneProfileUpgrade' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IManagedClusterUpgradeProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IManagedClusterPoolUpgradeProfileUpgradesItem]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -### `Get-AzAksVersion` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfileListResult' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOrchestratorVersionProfileListResult' - - The following properties in the output type are being deprecated : 'Orchestrator Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOrchestratorVersionProfile' - - The following properties are being added to the output type : 'Orchestrator System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IOrchestratorVersionProfile]' - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -### `New-AzAksCluster` - -- Cmdlet breaking-change will happen to all parameter sets - - The default value of -NodeVmSize will be changing from 'Standard_DS2_V2 (Linux), Standard_DS2_V3 (Windows)' to being dynamically selected by the AKS resource provider based on quota and capacity. - - This change is expected to take effect from Az.Aks version: 7.0.0 and Az version: 14.0.0 - -### `New-AzAksMaintenanceConfiguration` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IMaintenanceConfiguration' - - The following properties in the output type are being deprecated : 'TimeInWeek Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek' 'NotAllowedTime Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan' - - The following properties are being added to the output type : 'TimeInWeek System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]' 'NotAllowedTime System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]' - - Change description : The type of property 'TimeInWeek' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek[]' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeInWeek]',The type of property 'NotAllowedTime' of type 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20230201.IMaintenanceConfiguration' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.ITimeSpan]' - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '7.0.0' - -## Az.AppConfiguration - -### `Get-AzAppConfigurationStore` - -- Cmdlet breaking-change will happen to all parameter sets - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore' - - The following properties in the output type are being deprecated : 'PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference' - - The following properties are being added to the output type : 'PrivateEndpointConnection System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]' - - Change description : The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]' - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' - -### `New-AzAppConfigurationStore` - -- Cmdlet breaking-change will happen to all parameter sets - IdentityType will be removed. EnableSystemAssignedIdentity will be used to enable/disable system assigned identity and UserAssignedIdentity will be used to specify user assigned identities. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore' - - The following properties in the output type are being deprecated : 'PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference' - - The following properties are being added to the output type : 'PrivateEndpointConnection System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]' - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' - -### `Update-AzAppConfigurationStore` - -- Cmdlet breaking-change will happen to all parameter sets - IdentityType will be removed. EnableSystemAssignedIdentity will be used to enable/disable system assigned identity and UserAssignedIdentity will be used to specify user assigned identities. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' - - The output type is changing from the existing type :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' to the new type :'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore' - - The following properties in the output type are being deprecated : 'PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference' - - The following properties are being added to the output type : 'PrivateEndpointConnection System.Collections.Generic.List1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]' - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' - ## Az.Blueprint ### `Export-AzBlueprintWithArtifact` @@ -201,560 +80,563 @@ - Blueprints and associated cmdlets will be deprecated as early as July 2026. Customers are encouraged to transition to Template Specs and Deployments Stacks to support their scenarios beyond that date. Migration documentation is available at https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/migrate-blueprint. - This change is expected to take effect from Az.Blueprint version: - and Az version: 16.0.0 -## Az.Cdn +## Az.Compute -### `Clear-AzCdnEndpointContent` +### `New-AzVM` - Cmdlet breaking-change will happen to all parameter sets - The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'ContentPath, Domain' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IPurgeParameters' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - The default VM size will change from 'Standard_D2s_v3' to 'Standard_D2s_v5'. + - This change is expected to take effect from Az.Compute version: 11.0.0 and Az version: 15.0.0 -### `Clear-AzFrontDoorCdnEndpointContent` +### `New-AzVmss` + +- Cmdlet breaking-change will happen to all parameter sets + - In the next breaking change period (Nov 2025), the default VM size will change from 'Standard_Ds1_v2' to 'Standard_D2s_v5'. + - This change is expected to take effect from Az.Compute version: 11.0.0 and Az version: 15.0.0 + +## Az.ContainerInstance + +### `New-AzContainerGroup` + +- Parameter breaking-change will happen to all parameter sets + - `-OSType` + - The parameter : 'OSType' is changing. + - This change will take effect on '5/21/2025'- The change is expected to take effect from Az version : '14.0.0' + - The change is expected to take effect from version : '5.0.0' + +### `New-AzContainerInstanceContainerGroupProfile` + +- Parameter breaking-change will happen to all parameter sets + - `-OSType` + - The parameter : 'OSType' is changing. + - Change description : Removing the default value of OSType parameter. + - This change will take effect on '5/21/2025'- The change is expected to take effect from Az version : '14.0.0' + - The change is expected to take effect from version : '5.0.0' + +## Az.Maps + +### `Get-AzMapsCreator` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'ContentPath, Domain' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IPurgeParameters' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.9.0' -### `Get-AzCdnEdgeNode` +### `New-AzMapsCreator` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'IPAddressGroup' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IEdgeNode' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IIPAddressGroup' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IIPAddressGroup]'. - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - The change is expected to take effect from version : '0.9.0' -### `Get-AzCdnEndpoint` +### `Update-AzMapsCreator` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.9.0' -### `Get-AzCdnOriginGroup` +## Az.MixedReality + +### `Get-AzMixedRealityObjectAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Get-AzFrontDoorCdnEndpoint` +### `Get-AzMixedRealityObjectAnchorsAccountKey` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Get-AzFrontDoorCdnOriginGroup` +### `Get-AzMixedRealityRemoteRenderingAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Get-AzFrontDoorCdnRoute` +### `Get-AzMixedRealityRemoteRenderingAccountKey` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'PatternsToMatch, CompressionSettingContentTypesToCompress' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Get-AzFrontDoorCdnRule` +### `Get-AzMixedRealitySpatialAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Condition' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Import-AzCdnEndpointContent` +### `Get-AzMixedRealitySpatialAnchorsAccountKey` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'ContentPath, Domain' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IPurgeParameters' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzCdnEndpoint` +### `New-AzMixedRealityObjectAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzCdnManagedHttpsParametersObject` +### `New-AzMixedRealityObjectAnchorsAccountKey` - Cmdlet breaking-change will happen to all parameter sets - Add new mandatory parameter CertificateSourceParameterTypeName. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzCdnOriginGroup` +### `New-AzMixedRealityRemoteRenderingAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzCdnUserManagedHttpsParametersObject` +### `New-AzMixedRealityRemoteRenderingAccountKey` - Cmdlet breaking-change will happen to all parameter sets - Add new mandatory parameter CertificateSourceParameterTypeName. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzFrontDoorCdnEndpoint` +### `New-AzMixedRealitySpatialAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzFrontDoorCdnOriginGroup` +### `New-AzMixedRealitySpatialAnchorsAccountKey` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzFrontDoorCdnRoute` +### `Remove-AzMixedRealityObjectAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'PatternsToMatch, CompressionSettingContentTypesToCompress' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `New-AzFrontDoorCdnRule` +### `Remove-AzMixedRealityRemoteRenderingAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Condition' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -- Parameter breaking-change will happen to all parameter sets - - `-Action` - - The parameter : 'Action' is changing. - The type of the parameter is changing from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' to 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction'. - - Change description : The element type for parameter 'Action' has been changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' to 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' +### `Remove-AzMixedRealitySpatialAnchorsAccount` + +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Remove-AzCdnEndpoint` +### `Test-AzMixedRealityNameAvailability` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Remove-AzCdnOriginGroup` +### `Update-AzMixedRealityObjectAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Remove-AzFrontDoorCdnEndpoint` +### `Update-AzMixedRealityRemoteRenderingAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Remove-AzFrontDoorCdnOriginGroup` +### `Update-AzMixedRealitySpatialAnchorsAccount` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.3.0' -### `Remove-AzFrontDoorCdnRoute` +## Az.MobileNetwork + +### `Deploy-AzMobileNetworkReinstallPacketCoreControlPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'PatternsToMatch, CompressionSettingContentTypesToCompress' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Remove-AzFrontDoorCdnRule` +### `Deploy-AzMobileNetworkRollbackPacketCoreControlPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Condition' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Start-AzCdnEndpoint` +### `Get-AzMobileNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Stop-AzCdnEndpoint` +### `Get-AzMobileNetworkAttachedDataNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzCdnEndpoint` +### `Get-AzMobileNetworkDataNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzCdnOriginGroup` +### `Get-AzMobileNetworkPacketCoreControlPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzFrontDoorCdnEndpoint` +### `Get-AzMobileNetworkPacketCoreControlPlaneVersion` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Origin' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeepCreatedOriginGroup' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IResourceReference]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzFrontDoorCdnOriginGroup` +### `Get-AzMobileNetworkPacketCoreDataPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'HttpErrorRange' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IResponseBasedOriginErrorDetectionParameters' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IHttpErrorRangeParameters]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzFrontDoorCdnRoute` +### `Get-AzMobileNetworkService` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'PatternsToMatch, CompressionSettingContentTypesToCompress' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRoute' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzFrontDoorCdnRule` +### `Get-AzMobileNetworkSim` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - Change description : The type of property 'Condition' of type 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleCondition]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -- Parameter breaking-change will happen to all parameter sets - - `-Action` - - The parameter : 'Action' is changing. - The type of the parameter is changing from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' to 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction'. - - Change description : The element type for parameter 'Action' has been changed from 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.Api20240201.IDeliveryRuleAction1' to 'Microsoft.Azure.PowerShell.Cmdlets.Cdn.Models.IDeliveryRuleAction'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' +### `Get-AzMobileNetworkSimGroup` -## Az.Compute +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzVMSize` +### `Get-AzMobileNetworkSimPolicy` - Cmdlet breaking-change will happen to all parameter sets - - The "ListVirtualMachineSize" parameter set will be deprecated as its API: "Virtual Machine Sizes - List" is deprecated. For listing available VM sizes by subscription or location, please use instead "Get-AzComputeResourceSku". Other parameter sets: "List Available Sizes for Availability Set" and "List Available Sizes for Virtual Machine" will continue to be supported. - - This change is expected to take effect from Az.Compute version: 10.0.0 and Az version: 14.0.0 + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -## Az.ContainerInstance +### `Get-AzMobileNetworkSite` -### `New-AzContainerGroup` +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -- Parameter breaking-change will happen to all parameter sets - - `-OSType` - - The parameter : 'OSType' is changing. - - This change will take effect on '5/21/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' +### `Get-AzMobileNetworkSlice` -### `New-AzContainerInstanceContainerGroupProfile` +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -- Parameter breaking-change will happen to all parameter sets - - `-OSType` - - The parameter : 'OSType' is changing. - - Change description : Removing the default value of OSType parameter. - - This change will take effect on '5/21/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '5.0.0' +### `New-AzMobileNetwork` -## Az.ManagedServiceIdentity +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzFederatedIdentityCredential` +### `New-AzMobileNetworkAttachedDataNetwork` - Cmdlet breaking-change will happen to all parameter sets - - The output type 'Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential' is changing - - The following properties in the output type are being deprecated : 'Audience ' - - The following properties are being added to the output type : 'Audience ' - - Change description : The type of property 'Audience' of type 'FederatedIdentityCredential' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzFederatedIdentityCredential` +### `New-AzMobileNetworkDataNetwork` - Cmdlet breaking-change will happen to all parameter sets - - The output type 'Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential' is changing - - The following properties in the output type are being deprecated : 'Audience ' - - The following properties are being added to the output type : 'Audience ' - - Change description : The type of property 'Audience' of type 'FederatedIdentityCredential' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -- Parameter breaking-change will happen to all parameter sets - - `-Audience` - - The parameter : 'Audience' is changing. - The type of the parameter is changing from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - Change description : The type of property 'Audience' of type 'FederatedIdentityCredential' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' +### `New-AzMobileNetworkPacketCoreControlPlane` + +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Remove-AzFederatedIdentityCredential` +### `New-AzMobileNetworkPacketCoreDataPlane` - Cmdlet breaking-change will happen to all parameter sets - - The output type 'bool' is changing - - The following properties in the output type are being deprecated : 'Audience ' - - The following properties are being added to the output type : 'Audience ' - - Change description : The type of property 'Audience' of type 'FederatedIdentityCredential' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzFederatedIdentityCredential` +### `New-AzMobileNetworkService` - Cmdlet breaking-change will happen to all parameter sets - - The output type 'Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential' is changing - - The following properties in the output type are being deprecated : 'Audience ' - - The following properties are being added to the output type : 'Audience ' - - Change description : The type of property 'Audience' of type 'FederatedIdentityCredential' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -- Parameter breaking-change will happen to all parameter sets - - `-Audience` - - The parameter : 'Audience' is changing. - The type of the parameter is changing from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - Change description : The type of property 'Audience' of type 'FederatedIdentityCredential' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '2.0.0' +### `New-AzMobileNetworkSim` -## Az.Maps +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzMapsCreator` +### `New-AzMobileNetworkSimGroup` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.9.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMapsCreator` +### `New-AzMobileNetworkSimPolicy` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '0.9.0' + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzMapsCreator` +### `New-AzMobileNetworkSite` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.9.0' + - The change is expected to take effect from version : '0.5.0' -## Az.MixedReality +### `New-AzMobileNetworkSlice` -### `Get-AzMixedRealityObjectAnchorsAccount` +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' + +### `Remove-AzMobileNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzMixedRealityObjectAnchorsAccountKey` +### `Remove-AzMobileNetworkAttachedDataNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzMixedRealityRemoteRenderingAccount` +### `Remove-AzMobileNetworkBulkSimDelete` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzMixedRealityRemoteRenderingAccountKey` +### `Remove-AzMobileNetworkDataNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzMixedRealitySpatialAnchorsAccount` +### `Remove-AzMobileNetworkPacketCoreControlPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Get-AzMixedRealitySpatialAnchorsAccountKey` +### `Remove-AzMobileNetworkPacketCoreDataPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMixedRealityObjectAnchorsAccount` +### `Remove-AzMobileNetworkService` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMixedRealityObjectAnchorsAccountKey` +### `Remove-AzMobileNetworkSim` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMixedRealityRemoteRenderingAccount` +### `Remove-AzMobileNetworkSimGroup` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMixedRealityRemoteRenderingAccountKey` +### `Remove-AzMobileNetworkSimPolicy` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMixedRealitySpatialAnchorsAccount` +### `Remove-AzMobileNetworkSite` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzMixedRealitySpatialAnchorsAccountKey` +### `Remove-AzMobileNetworkSlice` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Remove-AzMixedRealityObjectAnchorsAccount` +### `Trace-AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Remove-AzMixedRealityRemoteRenderingAccount` +### `Update-AzMobileNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Remove-AzMixedRealitySpatialAnchorsAccount` +### `Update-AzMobileNetworkAttachedDataNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Test-AzMixedRealityNameAvailability` +### `Update-AzMobileNetworkBulkSimUpload` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzMixedRealityObjectAnchorsAccount` +### `Update-AzMobileNetworkBulkSimUploadEncrypted` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzMixedRealityRemoteRenderingAccount` +### `Update-AzMobileNetworkDataNetwork` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -### `Update-AzMixedRealitySpatialAnchorsAccount` +### `Update-AzMobileNetworkPacketCoreControlPlane` - Cmdlet breaking-change will happen to all parameter sets The cmdlet is being deprecated. There will be no replacement for it. - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' - - The change is expected to take effect from version : '0.3.0' + - The change is expected to take effect from version : '0.5.0' -## Az.RecoveryServices +### `Update-AzMobileNetworkPacketCoreDataPlane` -### `Get-AzRecoveryServicesBackupSchedulePolicyObject` +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' + +### `Update-AzMobileNetworkService` - Cmdlet breaking-change will happen to all parameter sets - - May 2025 onwards, this command will return a schedule policy object for Enhanced policy by default for AzureVM workload - - This change is expected to take effect from Az.RecoveryServices version: 8.0.0 and Az version: 14.0.0 + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -## Az.Resources +### `Update-AzMobileNetworkSim` -### `Get-AzResource` +- Cmdlet breaking-change will happen to all parameter sets + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' + +### `Update-AzMobileNetworkSimGroup` - Cmdlet breaking-change will happen to all parameter sets - - The API version for the resource type will be updated to use the default version instead of the latest. - - This change is expected to take effect from Az.Resources version: 8.0.0 and Az version: 14.0.0 + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Invoke-AzResourceAction` +### `Update-AzMobileNetworkSimPolicy` - Cmdlet breaking-change will happen to all parameter sets - - The API version for the resource type will be updated to use the default version instead of the latest. - - This change is expected to take effect from Az.Resources version: 8.0.0 and Az version: 14.0.0 + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `New-AzResource` +### `Update-AzMobileNetworkSite` - Cmdlet breaking-change will happen to all parameter sets - - The API version for the resource type will be updated to use the default version instead of the latest. - - This change is expected to take effect from Az.Resources version: 8.0.0 and Az version: 14.0.0 + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Remove-AzResource` +### `Update-AzMobileNetworkSlice` - Cmdlet breaking-change will happen to all parameter sets - - The API version for the resource type will be updated to use the default version instead of the latest. - - This change is expected to take effect from Az.Resources version: 8.0.0 and Az version: 14.0.0 + The cmdlet is being deprecated. There will be no replacement for it. + - This change will take effect on '9/30/2025'- The change is expected to take effect from Az version : '14.5.0' + - The change is expected to take effect from version : '0.5.0' -### `Set-AzResource` +## Az.RecoveryServices + +### `Get-AzRecoveryServicesBackupSchedulePolicyObject` - Cmdlet breaking-change will happen to all parameter sets - - The API version for the resource type will be updated to use the default version instead of the latest. - - This change is expected to take effect from Az.Resources version: 8.0.0 and Az version: 14.0.0 + - May 2025 onwards, this command will return a schedule policy object for Enhanced policy by default for AzureVM workload + - This change is expected to take effect from Az.RecoveryServices version: 8.0.0 and Az version: 14.0.0 ## Az.SpringCloud @@ -1366,18 +1248,3 @@ - This change will take effect on '3/31/2028'- The change is expected to take effect from Az version : '19.3.0' - The change is expected to take effect from version : '0.3.2' -## Az.Storage - -### `Set-AzStorageFileContent` - -- Cmdlet breaking-change will happen to all parameter sets - - The ContentHash properties will be removed from the uploaded Azure file when file size > 1TB, or upload with Oauth credencial, or with -DisAllowTrailingDot. - - This change is expected to take effect from Az.Storage version: 9.0.0 and Az version: 14.0.0 - -### `Start-AzStorageAccountMigration` - -- Cmdlet breaking-change will happen to all parameter sets - A prompt that needs users' confirmation will be added when converting the account's redundancy configuration. Suppress it with -Force. - - This change will take effect on '5/19/2025'- The change is expected to take effect from Az version : '14.0.0' - - The change is expected to take effect from version : '9.0.0' - diff --git a/setup/generate.ps1 b/setup/generate.ps1 index b22dd938f7ab..8b743d289a98 100644 --- a/setup/generate.ps1 +++ b/setup/generate.ps1 @@ -37,7 +37,7 @@ if( (-not (get-command -ea 0 light)) -or (-not (get-command -ea 0 heat)) -or (-n $outputName ="Az-Cmdlets" # generate the product name from the current month/year. -$productName = "Microsoft Azure PowerShell - May 2025" +$productName = "Microsoft Azure PowerShell - June 2025" # where to put temp files $tmp = Join-Path $env:temp azure-cmdlets-tmp diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 0e48edbd7da8..3348cc03500d 100644 --- a/src/Accounts/Accounts/Az.Accounts.psd1 +++ b/src/Accounts/Accounts/Az.Accounts.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/23/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '5.0.1' +ModuleVersion = '5.0.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -146,7 +146,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Force ''Get-AzAccessToken'' to always return SecureString as long as ''AsSecureString'' is set' + ReleaseNotes = '* Upgrade Azure.Core to 1.45.0' # Prerelease string of this module # Prerelease = '' diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 2d42942e0c2b..a56f45745da0 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 5.0.2 * Upgrade Azure.Core to 1.45.0 ## Version 5.0.1 diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs index b179aa6d68f7..6a04f7823d96 100644 --- a/src/Accounts/Accounts/Properties/AssemblyInfo.cs +++ b/src/Accounts/Accounts/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.1")] -[assembly: AssemblyFileVersion("5.0.1")] +[assembly: AssemblyVersion("5.0.2")] +[assembly: AssemblyFileVersion("5.0.2")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")] #endif diff --git a/src/Accounts/Accounts/Utilities/CommandMappings.json b/src/Accounts/Accounts/Utilities/CommandMappings.json index 9f2d8458b362..25864aec6272 100644 --- a/src/Accounts/Accounts/Utilities/CommandMappings.json +++ b/src/Accounts/Accounts/Utilities/CommandMappings.json @@ -4230,6 +4230,7 @@ "Get-AzMigrateReplicationProtectionContainerMapping": {}, "Get-AzMigrateReplicationRecoveryServicesProvider": {}, "Get-AzMigrateRunAsAccount": {}, + "Get-AzMigrateServerMigrationStatus": {}, "Get-AzMigrateServerReplication": {}, "Get-AzMigrateSite": {}, "Get-AzMigrateSolution": {}, @@ -4335,11 +4336,17 @@ "Update-AzMobileNetworkPacketCoreControlPlane": {}, "Update-AzMobileNetworkPacketCoreDataPlane": {}, "Update-AzMobileNetworkService": {}, + "Update-AzMobileNetworkSim": {}, "Update-AzMobileNetworkSimGroup": {}, "Update-AzMobileNetworkSimPolicy": {}, "Update-AzMobileNetworkSite": {}, "Update-AzMobileNetworkSlice": {} }, + "Az.MongoDB": { + "Get-AzMongoDBOrganization": {}, + "New-AzMongoDBOrganization": {}, + "Remove-AzMongoDBOrganization": {} + }, "Az.Monitor": { "Add-AzLogProfile": {}, "Add-AzMetricAlertRule": {}, @@ -4714,6 +4721,7 @@ "Add-AzDelegation": {}, "Add-AzExpressRouteCircuitAuthorization": {}, "Add-AzExpressRouteCircuitConnectionConfig": {}, + "Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig": {}, "Add-AzExpressRouteCircuitPeeringConfig": {}, "Add-AzExpressRouteCrossConnectionPeering": {}, "Add-AzExpressRoutePortAuthorization": {}, @@ -4802,6 +4810,7 @@ "Get-AzExpressRouteCircuitARPTable": {}, "Get-AzExpressRouteCircuitAuthorization": {}, "Get-AzExpressRouteCircuitConnectionConfig": {}, + "Get-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig": {}, "Get-AzExpressRouteCircuitPeeringConfig": {}, "Get-AzExpressRouteCircuitRouteTable": {}, "Get-AzExpressRouteCircuitRouteTableSummary": {}, @@ -4838,6 +4847,7 @@ "Get-AzLoadBalancerOutboundRuleConfig": {}, "Get-AzLoadBalancerProbeConfig": {}, "Get-AzLoadBalancerRuleConfig": {}, + "Get-AzLoadBalancerRuleHealth": {}, "Get-AzLocalNetworkGateway": {}, "Get-AzNatGateway": {}, "Get-AzNetworkInterface": {}, @@ -4856,13 +4866,13 @@ "Get-AzNetworkManagerIpamPoolStaticCidr": {}, "Get-AzNetworkManagerIpamPoolUsage": {}, "Get-AzNetworkManagerManagementGroupConnection": {}, + "Get-AzNetworkManagerRoutingConfiguration": {}, + "Get-AzNetworkManagerRoutingRule": {}, + "Get-AzNetworkManagerRoutingRuleCollection": {}, "Get-AzNetworkManagerScopeConnection": {}, "Get-AzNetworkManagerSecurityAdminConfiguration": {}, "Get-AzNetworkManagerSecurityAdminRule": {}, "Get-AzNetworkManagerSecurityAdminRuleCollection": {}, - "Get-AzNetworkManagerRoutingConfiguration": {}, - "Get-AzNetworkManagerRoutingRule": {}, - "Get-AzNetworkManagerRoutingRuleCollection": {}, "Get-AzNetworkManagerSecurityUserConfiguration": {}, "Get-AzNetworkManagerSecurityUserRule": {}, "Get-AzNetworkManagerSecurityUserRuleCollection": {}, @@ -4882,7 +4892,6 @@ "Get-AzNetworkVirtualApplianceSku": {}, "Get-AzNetworkWatcher": {}, "Get-AzNetworkWatcherConnectionMonitor": {}, - "Get-AzNetworkWatcherConnectionMonitorReport": {}, "Get-AzNetworkWatcherFlowLog": {}, "Get-AzNetworkWatcherFlowLogStatus": {}, "Get-AzNetworkWatcherNextHop": {}, @@ -4963,7 +4972,12 @@ "Get-AzVpnServerConfigurationPolicyGroup": {}, "Get-AzVpnSite": {}, "Get-AzVpnSiteLinkConnectionIkeSa": {}, + "Invoke-AzFirewallPacketCapture": {}, "Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic": {}, + "Invoke-AzVirtualNetworkGatewayAbortMigration": {}, + "Invoke-AzVirtualNetworkGatewayCommitMigration": {}, + "Invoke-AzVirtualNetworkGatewayExecuteMigration": {}, + "Invoke-AzVirtualNetworkGatewayPrepareMigration": {}, "Move-AzExpressRouteCircuit": {}, "New-AzApplicationGateway": {}, "New-AzApplicationGatewayAuthenticationCertificate": {}, @@ -5047,11 +5061,13 @@ "New-AzFirewallNatRuleCollection": {}, "New-AzFirewallNetworkRule": {}, "New-AzFirewallNetworkRuleCollection": {}, + "New-AzFirewallPacketCaptureParameter": {}, + "New-AzFirewallPacketCaptureRule": {}, "New-AzFirewallPolicy": {}, "New-AzFirewallPolicyApplicationRule": {}, "New-AzFirewallPolicyApplicationRuleCustomHttpHeader": {}, - "New-AzFirewallPolicyDraft": {}, "New-AzFirewallPolicyDnsSetting": {}, + "New-AzFirewallPolicyDraft": {}, "New-AzFirewallPolicyExplicitProxy": {}, "New-AzFirewallPolicyFilterRuleCollection": {}, "New-AzFirewallPolicyIntrusionDetection": {}, @@ -5090,8 +5106,6 @@ "New-AzNetworkInterfaceIpConfig": {}, "New-AzNetworkManager": {}, "New-AzNetworkManagerAddressPrefixItem": {}, - "New-AzNetworkManagerRoutingRuleDestination": {}, - "New-AzNetworkManagerRoutingRuleNextHop": {}, "New-AzNetworkManagerConnectivityConfiguration": {}, "New-AzNetworkManagerConnectivityGroupItem": {}, "New-AzNetworkManagerGroup": {}, @@ -5100,20 +5114,22 @@ "New-AzNetworkManagerIpamPoolStaticCidr": {}, "New-AzNetworkManagerIPTraffic": {}, "New-AzNetworkManagerManagementGroupConnection": {}, + "New-AzNetworkManagerRoutingConfiguration": {}, + "New-AzNetworkManagerRoutingGroupItem": {}, + "New-AzNetworkManagerRoutingRule": {}, + "New-AzNetworkManagerRoutingRuleCollection": {}, + "New-AzNetworkManagerRoutingRuleDestination": {}, + "New-AzNetworkManagerRoutingRuleNextHop": {}, "New-AzNetworkManagerScope": {}, "New-AzNetworkManagerScopeConnection": {}, "New-AzNetworkManagerSecurityAdminConfiguration": {}, "New-AzNetworkManagerSecurityAdminRule": {}, "New-AzNetworkManagerSecurityAdminRuleCollection": {}, - "New-AzNetworkManagerRoutingConfiguration": {}, - "New-AzNetworkManagerRoutingRule": {}, - "New-AzNetworkManagerRoutingRuleCollection": {}, + "New-AzNetworkManagerSecurityGroupItem": {}, "New-AzNetworkManagerSecurityUserConfiguration": {}, + "New-AzNetworkManagerSecurityUserGroupItem": {}, "New-AzNetworkManagerSecurityUserRule": {}, "New-AzNetworkManagerSecurityUserRuleCollection": {}, - "New-AzNetworkManagerSecurityGroupItem": {}, - "New-AzNetworkManagerRoutingGroupItem": {}, - "New-AzNetworkManagerSecurityUserGroupItem": {}, "New-AzNetworkManagerStaticMember": {}, "New-AzNetworkManagerSubscriptionConnection": {}, "New-AzNetworkManagerVerifierWorkspace": {}, @@ -5174,6 +5190,11 @@ "New-AzVHubRoute": {}, "New-AzVHubRouteTable": {}, "New-AzVirtualApplianceAdditionalNicProperty": {}, + "New-AzVirtualApplianceInboundSecurityRulesProperty": {}, + "New-AzVirtualApplianceInternetIngressIpsProperty": {}, + "New-AzVirtualApplianceIpConfiguration": {}, + "New-AzVirtualApplianceNetworkInterfaceConfiguration": {}, + "New-AzVirtualApplianceNetworkProfile": {}, "New-AzVirtualApplianceSite": {}, "New-AzVirtualApplianceSkuProperty": {}, "New-AzVirtualHub": {}, @@ -5185,6 +5206,7 @@ "New-AzVirtualNetworkGateway": {}, "New-AzVirtualNetworkGatewayConnection": {}, "New-AzVirtualNetworkGatewayIpConfig": {}, + "New-AzVirtualNetworkGatewayMigrationParameter": {}, "New-AzVirtualNetworkGatewayNatRule": {}, "New-AzVirtualNetworkGatewayPolicyGroup": {}, "New-AzVirtualNetworkGatewayPolicyGroupMember": {}, @@ -5247,6 +5269,7 @@ "Remove-AzExpressRouteCircuit": {}, "Remove-AzExpressRouteCircuitAuthorization": {}, "Remove-AzExpressRouteCircuitConnectionConfig": {}, + "Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig": {}, "Remove-AzExpressRouteCircuitPeeringConfig": {}, "Remove-AzExpressRouteConnection": {}, "Remove-AzExpressRouteCrossConnectionPeering": {}, @@ -5281,16 +5304,16 @@ "Remove-AzNetworkManagerIpamPool": {}, "Remove-AzNetworkManagerIpamPoolStaticCidr": {}, "Remove-AzNetworkManagerManagementGroupConnection": {}, + "Remove-AzNetworkManagerRoutingConfiguration": {}, + "Remove-AzNetworkManagerRoutingRule": {}, + "Remove-AzNetworkManagerRoutingRuleCollection": {}, "Remove-AzNetworkManagerScopeConnection": {}, "Remove-AzNetworkManagerSecurityAdminConfiguration": {}, "Remove-AzNetworkManagerSecurityAdminRule": {}, "Remove-AzNetworkManagerSecurityAdminRuleCollection": {}, - "Remove-AzNetworkManagerRoutingConfiguration": {}, - "Remove-AzNetworkManagerRoutingRuleCollection": {}, - "Remove-AzNetworkManagerRoutingRule": {}, "Remove-AzNetworkManagerSecurityUserConfiguration": {}, - "Remove-AzNetworkManagerSecurityUserRuleCollection": {}, "Remove-AzNetworkManagerSecurityUserRule": {}, + "Remove-AzNetworkManagerSecurityUserRuleCollection": {}, "Remove-AzNetworkManagerStaticMember": {}, "Remove-AzNetworkManagerSubscriptionConnection": {}, "Remove-AzNetworkManagerVerifierWorkspace": {}, @@ -5394,6 +5417,7 @@ "Set-AzBastion": {}, "Set-AzExpressRouteCircuit": {}, "Set-AzExpressRouteCircuitConnectionConfig": {}, + "Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig": {}, "Set-AzExpressRouteCircuitPeeringConfig": {}, "Set-AzExpressRouteConnection": {}, "Set-AzExpressRouteCrossConnection": {}, @@ -5425,16 +5449,16 @@ "Set-AzNetworkManagerGroup": {}, "Set-AzNetworkManagerIpamPool": {}, "Set-AzNetworkManagerManagementGroupConnection": {}, + "Set-AzNetworkManagerRoutingConfiguration": {}, + "Set-AzNetworkManagerRoutingRule": {}, + "Set-AzNetworkManagerRoutingRuleCollection": {}, "Set-AzNetworkManagerScopeConnection": {}, "Set-AzNetworkManagerSecurityAdminConfiguration": {}, "Set-AzNetworkManagerSecurityAdminRule": {}, "Set-AzNetworkManagerSecurityAdminRuleCollection": {}, - "Set-AzNetworkManagerRoutingConfiguration": {}, - "Set-AzNetworkManagerRoutingRuleCollection": {}, - "Set-AzNetworkManagerRoutingRule": {}, "Set-AzNetworkManagerSecurityUserConfiguration": {}, - "Set-AzNetworkManagerSecurityUserRuleCollection": {}, "Set-AzNetworkManagerSecurityUserRule": {}, + "Set-AzNetworkManagerSecurityUserRuleCollection": {}, "Set-AzNetworkManagerSubscriptionConnection": {}, "Set-AzNetworkManagerVerifierWorkspace": {}, "Set-AzNetworkProfile": {}, @@ -5469,7 +5493,6 @@ "Set-AzVirtualNetworkTap": {}, "Set-AzVpnClientIpsecParameter": {}, "Start-AzApplicationGateway": {}, - "Start-AzNetworkWatcherConnectionMonitor": {}, "Start-AzNetworkWatcherResourceTroubleshooting": {}, "Start-AzVirtualNetworkGatewayConnectionPacketCapture": {}, "Start-AzVirtualnetworkGatewayPacketCapture": {}, @@ -5489,22 +5512,14 @@ "Test-AzPrivateIPAddressAvailability": {}, "Test-AzPrivateLinkServiceVisibility": {}, "Update-AzCustomIpPrefix": {}, - "Update-AzNetworkVirtualApplianceConnection": {}, - "New-AzVirtualApplianceInternetIngressIpsProperty": {}, - "New-AzVirtualApplianceNetworkProfile": {}, - "New-AzVirtualApplianceNetworkInterfaceConfiguration": {}, - "New-AzVirtualApplianceIpConfiguration": {}, - "New-AzVirtualApplianceInboundSecurityRulesProperty": {}, - "Update-AzVirtualApplianceInboundSecurityRule": {}, - "New-AzFirewallPacketCaptureRule": {}, - "New-AzFirewallPacketCaptureParameter": {}, - "Invoke-AzFirewallPacketCapture": {}, "Update-AzNetworkVirtualAppliance": {}, + "Update-AzNetworkVirtualApplianceConnection": {}, "Update-AzP2sVpnGateway": {}, "Update-AzRouteMap": {}, "Update-AzRouteServer": {}, "Update-AzRouteServerPeer": {}, "Update-AzVHubRouteTable": {}, + "Update-AzVirtualApplianceInboundSecurityRule": {}, "Update-AzVirtualApplianceSite": {}, "Update-AzVirtualHub": {}, "Update-AzVirtualHubBgpConnection": {}, @@ -5519,6 +5534,32 @@ "Update-AzVpnServerConfiguration": {}, "Update-AzVpnServerConfigurationPolicyGroup": {}, "Update-AzVpnSite": {}, + "Get-AzNetworkSecurityPerimeter": {}, + "Get-AzNetworkSecurityPerimeterAccessRule": {}, + "Get-AzNetworkSecurityPerimeterAssociableResourceType": {}, + "Get-AzNetworkSecurityPerimeterAssociation": {}, + "Get-AzNetworkSecurityPerimeterLink": {}, + "Get-AzNetworkSecurityPerimeterLinkReference": {}, + "Get-AzNetworkSecurityPerimeterLoggingConfiguration": {}, + "Get-AzNetworkSecurityPerimeterProfile": {}, + "New-AzNetworkSecurityPerimeter": {}, + "New-AzNetworkSecurityPerimeterAccessRule": {}, + "New-AzNetworkSecurityPerimeterAssociation": {}, + "New-AzNetworkSecurityPerimeterLink": {}, + "New-AzNetworkSecurityPerimeterLoggingConfiguration": {}, + "New-AzNetworkSecurityPerimeterProfile": {}, + "Remove-AzNetworkSecurityPerimeter": {}, + "Remove-AzNetworkSecurityPerimeterAccessRule": {}, + "Remove-AzNetworkSecurityPerimeterAssociation": {}, + "Remove-AzNetworkSecurityPerimeterLink": {}, + "Remove-AzNetworkSecurityPerimeterLinkReference": {}, + "Remove-AzNetworkSecurityPerimeterLoggingConfiguration": {}, + "Remove-AzNetworkSecurityPerimeterProfile": {}, + "Update-AzNetworkSecurityPerimeter": {}, + "Update-AzNetworkSecurityPerimeterAccessRule": {}, + "Update-AzNetworkSecurityPerimeterAssociation": {}, + "Update-AzNetworkSecurityPerimeterLink": {}, + "Update-AzNetworkSecurityPerimeterLoggingConfiguration": {}, "Add-AzApplicationGatewayBackendHttpSettings": {}, "Get-AzApplicationGatewayAvailableSslOptions": {}, "Get-AzApplicationGatewayAvailableWafRuleSets": {}, @@ -8010,46 +8051,14 @@ "Update-AzStorageActionTask": {} }, "Az.StorageCache": { - "Clear-AzStorageCache": {}, - "Clear-AzStorageCacheTarget": {}, - "Debug-AzStorageCache": {}, - "Get-AzStorageCache": {}, "Get-AzStorageCacheAmlFileSystem": {}, "Get-AzStorageCacheAmlFileSystemSubnetRequiredSize": {}, - "Get-AzStorageCacheAscUsage": {}, - "Get-AzStorageCacheSku": {}, - "Get-AzStorageCacheTarget": {}, - "Get-AzStorageCacheUsageModel": {}, "Invoke-AzStorageCacheAmlFileSystemArchive": {}, - "Invoke-AzStorageCacheInvalidateTarget": {}, - "New-AzStorageCache": {}, "New-AzStorageCacheAmlFileSystem": {}, - "New-AzStorageCacheDirectorySettingObject": {}, - "New-AzStorageCacheNamespaceJunctionObject": {}, - "New-AzStorageCacheNfsAccessPolicyObject": {}, - "New-AzStorageCacheNfsAccessRuleObject": {}, - "New-AzStorageCachePrimingJobObject": {}, - "New-AzStorageCacheTarget": {}, - "New-AzStorageCacheTargetSpaceAllocationObject": {}, - "Remove-AzStorageCache": {}, "Remove-AzStorageCacheAmlFileSystem": {}, - "Remove-AzStorageCacheTarget": {}, - "Restore-AzStorageCacheTargetSetting": {}, - "Resume-AzStorageCachePrimingJob": {}, - "Resume-AzStorageCacheTarget": {}, - "Start-AzStorageCache": {}, - "Start-AzStorageCachePrimingJob": {}, - "Stop-AzStorageCache": {}, "Stop-AzStorageCacheAmlFilesystemArchive": {}, - "Stop-AzStorageCachePrimingJob": {}, - "Suspend-AzStorageCachePrimingJob": {}, - "Suspend-AzStorageCacheTarget": {}, "Test-AzStorageCacheAmlFileSystemSubnet": {}, - "Update-AzStorageCache": {}, - "Update-AzStorageCacheAmlFileSystem": {}, - "Update-AzStorageCacheFirmware": {}, - "Update-AzStorageCacheSpaceAllocation": {}, - "Update-AzStorageCacheTargetDns": {} + "Update-AzStorageCacheAmlFileSystem": {} }, "Az.StorageMover": { "Get-AzStorageMover": {}, diff --git a/src/Accounts/AssemblyLoading/Properties/AssemblyInfo.cs b/src/Accounts/AssemblyLoading/Properties/AssemblyInfo.cs index ebf4f8bc3bf1..b74fccf68dec 100644 --- a/src/Accounts/AssemblyLoading/Properties/AssemblyInfo.cs +++ b/src/Accounts/AssemblyLoading/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.1")] -[assembly: AssemblyFileVersion("5.0.1")] +[assembly: AssemblyVersion("5.0.2")] +[assembly: AssemblyFileVersion("5.0.2")] diff --git a/src/Accounts/Authentication/Properties/AssemblyInfo.cs b/src/Accounts/Authentication/Properties/AssemblyInfo.cs index aca2c3428fc1..6b5eb971e8c1 100644 --- a/src/Accounts/Authentication/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authentication/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.1")] -[assembly: AssemblyFileVersion("5.0.1")] +[assembly: AssemblyVersion("5.0.2")] +[assembly: AssemblyFileVersion("5.0.2")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Authentication.Test")] #endif diff --git a/src/Accounts/AuthenticationAssemblyLoadContext/Properties/AssemblyInfo.cs b/src/Accounts/AuthenticationAssemblyLoadContext/Properties/AssemblyInfo.cs index da310d0429c6..24d54a27e540 100644 --- a/src/Accounts/AuthenticationAssemblyLoadContext/Properties/AssemblyInfo.cs +++ b/src/Accounts/AuthenticationAssemblyLoadContext/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.1")] -[assembly: AssemblyFileVersion("5.0.1")] +[assembly: AssemblyVersion("5.0.2")] +[assembly: AssemblyFileVersion("5.0.2")] diff --git a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs index 75546e2dda49..22dfa8ee9007 100644 --- a/src/Accounts/Authenticators/Properties/AssemblyInfo.cs +++ b/src/Accounts/Authenticators/Properties/AssemblyInfo.cs @@ -48,5 +48,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.1")] -[assembly: AssemblyFileVersion("5.0.1")] +[assembly: AssemblyVersion("5.0.2")] +[assembly: AssemblyFileVersion("5.0.2")] diff --git a/src/AksArc/AksArc/Az.AksArc.psd1 b/src/AksArc/AksArc/Az.AksArc.psd1 index 3279c31e3526..35edb34763c5 100644 --- a/src/AksArc/AksArc/Az.AksArc.psd1 +++ b/src/AksArc/AksArc/Az.AksArc.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.3' +ModuleVersion = '0.1.4' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AksArc.Autorest/bin/Az.AksArc.private.dll' @@ -115,7 +115,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/AksArc/AksArc/ChangeLog.md b/src/AksArc/AksArc/ChangeLog.md index 9138d5b95e60..0b8bad80cf4d 100644 --- a/src/AksArc/AksArc/ChangeLog.md +++ b/src/AksArc/AksArc/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.4 * Fixed module name in module metadata ## Version 0.1.3 diff --git a/src/AksArc/AksArc/Properties/AssemblyInfo.cs b/src/AksArc/AksArc/Properties/AssemblyInfo.cs index 59e17efc67b3..3d3589f1be51 100644 --- a/src/AksArc/AksArc/Properties/AssemblyInfo.cs +++ b/src/AksArc/AksArc/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("4431353d-6669-4e8f-866d-f010eb96213c")] -[assembly: AssemblyVersion("0.1.3")] -[assembly: AssemblyFileVersion("0.1.3")] +[assembly: AssemblyVersion("0.1.4")] +[assembly: AssemblyFileVersion("0.1.4")] diff --git a/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 b/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 index 49ae6653daaf..862bd436c4ac 100644 --- a/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 +++ b/src/AppComplianceAutomation/AppComplianceAutomation/Az.AppComplianceAutomation.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/1/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.3' +ModuleVersion = '0.1.4' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,17 +51,17 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.1.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AppComplianceAutomation.Autorest/bin/Az.AppComplianceAutomation.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = @@ -103,7 +103,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'AppComplianceAutomation' + Tags = 'Azure','ResourceManager','ARM','PSModule','AppComplianceAutomation' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -115,7 +115,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' @@ -128,7 +128,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md b/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md index c5fe5973a142..b0b53a2f6f76 100644 --- a/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md +++ b/src/AppComplianceAutomation/AppComplianceAutomation/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.4 * Fixed module name in module metadata ## Version 0.1.3 diff --git a/src/AppComplianceAutomation/AppComplianceAutomation/Properties/AssemblyInfo.cs b/src/AppComplianceAutomation/AppComplianceAutomation/Properties/AssemblyInfo.cs index ba2b66519759..0a59bd45cbe0 100644 --- a/src/AppComplianceAutomation/AppComplianceAutomation/Properties/AssemblyInfo.cs +++ b/src/AppComplianceAutomation/AppComplianceAutomation/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("896fbed6-4831-4743-8c2e-e19175348e6a")] -[assembly: AssemblyVersion("0.1.3")] -[assembly: AssemblyFileVersion("0.1.3")] +[assembly: AssemblyVersion("0.1.4")] +[assembly: AssemblyFileVersion("0.1.4")] diff --git a/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 b/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 index b6e8b8362431..98258400c53a 100644 --- a/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 +++ b/src/ArcGateway/ArcGateway/Az.ArcGateway.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'ArcGateway.Autorest/bin/Az.ArcGateway.private.dll' @@ -108,7 +108,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/ArcGateway/ArcGateway/ChangeLog.md b/src/ArcGateway/ArcGateway/ChangeLog.md index 5ab4548a1a45..9350c52fed5f 100644 --- a/src/ArcGateway/ArcGateway/ChangeLog.md +++ b/src/ArcGateway/ArcGateway/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.2 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/ArcGateway/ArcGateway/Properties/AssemblyInfo.cs b/src/ArcGateway/ArcGateway/Properties/AssemblyInfo.cs index fdd60e50fe30..5a21a65d5b97 100644 --- a/src/ArcGateway/ArcGateway/Properties/AssemblyInfo.cs +++ b/src/ArcGateway/ArcGateway/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("45d3d8ea-3742-4da4-9c33-f376bef8630b")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.1.2")] +[assembly: AssemblyFileVersion("0.1.2")] diff --git a/src/Astro/Astro/Az.Astro.psd1 b/src/Astro/Astro/Az.Astro.psd1 index c429807266fc..2d9507e12e75 100644 --- a/src/Astro/Astro/Az.Astro.psd1 +++ b/src/Astro/Astro/Az.Astro.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.2' +ModuleVersion = '0.1.3' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Astro.Autorest/bin/Az.Astro.private.dll' @@ -108,7 +108,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/Astro/Astro/ChangeLog.md b/src/Astro/Astro/ChangeLog.md index a3d0967a9bdc..8c10f99015bb 100644 --- a/src/Astro/Astro/ChangeLog.md +++ b/src/Astro/Astro/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.3 * Fixed module name in module metadata ## Version 0.1.2 diff --git a/src/Astro/Astro/Properties/AssemblyInfo.cs b/src/Astro/Astro/Properties/AssemblyInfo.cs index 4c9aee149bd3..9824a9240d04 100644 --- a/src/Astro/Astro/Properties/AssemblyInfo.cs +++ b/src/Astro/Astro/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("adab412d-18c0-454e-9a47-6e8d0f88f260")] -[assembly: AssemblyVersion("0.1.2")] -[assembly: AssemblyFileVersion("0.1.2")] +[assembly: AssemblyVersion("0.1.3")] +[assembly: AssemblyFileVersion("0.1.3")] diff --git a/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 b/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 index eecb7f138e88..f1841684704d 100644 --- a/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 +++ b/src/BillingBenefits/BillingBenefits/Az.BillingBenefits.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/30/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '0.2.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.2.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'BillingBenefits.Autorest/bin/Az.BillingBenefits.private.dll' @@ -118,7 +118,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/BillingBenefits/BillingBenefits/ChangeLog.md b/src/BillingBenefits/BillingBenefits/ChangeLog.md index 807e6ac6ee26..b60b60fe1d34 100644 --- a/src/BillingBenefits/BillingBenefits/ChangeLog.md +++ b/src/BillingBenefits/BillingBenefits/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.2.1 * Fixed module name in module metadata ## Version 0.2.0 diff --git a/src/BillingBenefits/BillingBenefits/Properties/AssemblyInfo.cs b/src/BillingBenefits/BillingBenefits/Properties/AssemblyInfo.cs index 364114030b46..00054251fe46 100644 --- a/src/BillingBenefits/BillingBenefits/Properties/AssemblyInfo.cs +++ b/src/BillingBenefits/BillingBenefits/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("83005d06-428d-4051-92c5-188180d9e6b5")] -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.2.1")] +[assembly: AssemblyFileVersion("0.2.1")] diff --git a/src/Chaos/Chaos/Az.Chaos.psd1 b/src/Chaos/Chaos/Az.Chaos.psd1 index 477e0527ff6d..a0bdecb22da6 100644 --- a/src/Chaos/Chaos/Az.Chaos.psd1 +++ b/src/Chaos/Chaos/Az.Chaos.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Chaos.Autorest/bin/Az.Chaos.private.dll' @@ -117,7 +117,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/Chaos/Chaos/ChangeLog.md b/src/Chaos/Chaos/ChangeLog.md index 799028649331..127614eed1ef 100644 --- a/src/Chaos/Chaos/ChangeLog.md +++ b/src/Chaos/Chaos/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.2 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/Chaos/Chaos/Properties/AssemblyInfo.cs b/src/Chaos/Chaos/Properties/AssemblyInfo.cs index 4bf1e12eefdc..34698b5a1fb0 100644 --- a/src/Chaos/Chaos/Properties/AssemblyInfo.cs +++ b/src/Chaos/Chaos/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("d43875fe-a097-41f3-bc08-2f4b56112918")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.1.2")] +[assembly: AssemblyFileVersion("0.1.2")] diff --git a/src/Compute/Compute.Helpers/Properties/AssemblyInfo.cs b/src/Compute/Compute.Helpers/Properties/AssemblyInfo.cs index 11a7298d61a9..9eeff082c4e4 100644 --- a/src/Compute/Compute.Helpers/Properties/AssemblyInfo.cs +++ b/src/Compute/Compute.Helpers/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("ba0d06e0-118c-4f34-b01c-7f6335577747")] -[assembly: AssemblyVersion("10.0.0")] -[assembly: AssemblyFileVersion("10.0.0")] +[assembly: AssemblyVersion("10.0.1")] +[assembly: AssemblyFileVersion("10.0.1")] diff --git a/src/Compute/Compute.Management.Sdk/Properties/AssemblyInfo.cs b/src/Compute/Compute.Management.Sdk/Properties/AssemblyInfo.cs index 2289e26b1b58..5ae18c77aa29 100644 --- a/src/Compute/Compute.Management.Sdk/Properties/AssemblyInfo.cs +++ b/src/Compute/Compute.Management.Sdk/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("9d9ad6c2-c449-4f97-95d1-252f737c4e96")] -[assembly: AssemblyVersion("10.0.0")] -[assembly: AssemblyFileVersion("10.0.0")] +[assembly: AssemblyVersion("10.0.1")] +[assembly: AssemblyFileVersion("10.0.1")] diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index 28c23e209cb7..67669672e991 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '10.0.0' +ModuleVersion = '10.0.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Compute.Autorest/bin/Az.Compute.private.dll', @@ -237,9 +237,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added new properties ''Architecture'', ''HyperVGeneration'', and ''ImageDeprecationStatus'' to be returned in ''Get-AzVMImage'' ListVMImage parameter set. -* Deprecated ''Get-AzVMSize'' ''List Virtual Machine Size'' parameter set. -* Added new parameters ''EnableAutomaticZoneRebalance'', ''AutomaticZoneRebalanceStrategy'' and ''AutomaticZoneRebalanceBehavior'' to ''New-AzVmssConfig'' and ''Update-AzVmss'' cmdlets for VMSS Automatic Zone Rebalancing. ' + ReleaseNotes = '* Added breaking change message for ''New-AzVM'' and ''New-AzVmss'' cmdlets.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 320ee4b48320..f30e27d03e71 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,8 @@ --> ## Upcoming Release + +## Version 10.0.1 * Added breaking change message for `New-AzVM` and `New-AzVmss` cmdlets. ## Version 10.0.0 diff --git a/src/Compute/Compute/Properties/AssemblyInfo.cs b/src/Compute/Compute/Properties/AssemblyInfo.cs index 7f6fe5bc79bb..b5b692c2bfc3 100644 --- a/src/Compute/Compute/Properties/AssemblyInfo.cs +++ b/src/Compute/Compute/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")] -[assembly: AssemblyVersion("10.0.0")] -[assembly: AssemblyFileVersion("10.0.0")] +[assembly: AssemblyVersion("10.0.1")] +[assembly: AssemblyFileVersion("10.0.1")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")] #endif diff --git a/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 b/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 index 3e13f9edb42b..f750baa6a2f1 100644 --- a/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 +++ b/src/ComputeFleet/ComputeFleet/Az.ComputeFleet.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.1.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'ComputeFleet.Autorest/bin/Az.ComputeFleet.private.dll' @@ -108,7 +108,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/ComputeFleet/ComputeFleet/ChangeLog.md b/src/ComputeFleet/ComputeFleet/ChangeLog.md index 895fa32567ad..ee813005824c 100644 --- a/src/ComputeFleet/ComputeFleet/ChangeLog.md +++ b/src/ComputeFleet/ComputeFleet/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.1 * Fixed module name in module metadata ## Version 0.1.0 diff --git a/src/ComputeFleet/ComputeFleet/Properties/AssemblyInfo.cs b/src/ComputeFleet/ComputeFleet/Properties/AssemblyInfo.cs index 9a5fa130de4c..376ca8a8716c 100644 --- a/src/ComputeFleet/ComputeFleet/Properties/AssemblyInfo.cs +++ b/src/ComputeFleet/ComputeFleet/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("b39f6074-6b38-49ea-93b6-a6e8cc50b7fb")] -[assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] +[assembly: AssemblyVersion("0.1.1")] +[assembly: AssemblyFileVersion("0.1.1")] diff --git a/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 b/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 index 659b4f2503b7..7a2fe4adcb69 100644 --- a/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 +++ b/src/ComputeSchedule/ComputeSchedule/Az.ComputeSchedule.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.1.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'ComputeSchedule.AutoRest/bin/Az.ComputeSchedule.private.dll' @@ -115,7 +115,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/ComputeSchedule/ComputeSchedule/ChangeLog.md b/src/ComputeSchedule/ComputeSchedule/ChangeLog.md index dc7f81061c6b..c496a833b90f 100644 --- a/src/ComputeSchedule/ComputeSchedule/ChangeLog.md +++ b/src/ComputeSchedule/ComputeSchedule/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.1 * Fixed module name in module metadata ## Version 0.1.0 diff --git a/src/ComputeSchedule/ComputeSchedule/Properties/AssemblyInfo.cs b/src/ComputeSchedule/ComputeSchedule/Properties/AssemblyInfo.cs index 2506f0e9e56c..92d177b4cae5 100644 --- a/src/ComputeSchedule/ComputeSchedule/Properties/AssemblyInfo.cs +++ b/src/ComputeSchedule/ComputeSchedule/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("9aaee9d4-aed3-4697-a021-a758ab0ab4b9")] -[assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] +[assembly: AssemblyVersion("0.1.1")] +[assembly: AssemblyFileVersion("0.1.1")] diff --git a/src/CostManagement/CostManagement/Az.CostManagement.psd1 b/src/CostManagement/CostManagement/Az.CostManagement.psd1 index cc5217d3d269..b5631bc081de 100644 --- a/src/CostManagement/CostManagement/Az.CostManagement.psd1 +++ b/src/CostManagement/CostManagement/Az.CostManagement.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.4.1' +ModuleVersion = '0.4.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'CostManagement.Autorest/bin/Az.CostManagement.private.dll' @@ -100,7 +100,9 @@ AliasesToExport = @() # 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. + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. Tags = 'Azure','ResourceManager','ARM','PSModule','CostManagement' # A URL to the license for this module. @@ -113,7 +115,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Removed extra empty lines in the output of ''Invoke-AzCostManagementQuery''. [#27640]' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/CostManagement/CostManagement/ChangeLog.md b/src/CostManagement/CostManagement/ChangeLog.md index 8006bc6935f7..5182f9e00b39 100644 --- a/src/CostManagement/CostManagement/ChangeLog.md +++ b/src/CostManagement/CostManagement/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 0.4.2 * Fixed module name in module metadata ## Version 0.4.1 diff --git a/src/CostManagement/CostManagement/Properties/AssemblyInfo.cs b/src/CostManagement/CostManagement/Properties/AssemblyInfo.cs index cf7799f86df0..533768f14d9a 100644 --- a/src/CostManagement/CostManagement/Properties/AssemblyInfo.cs +++ b/src/CostManagement/CostManagement/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("7be1c102-af7d-4855-8609-ce6f2b3fddc6")] -[assembly: AssemblyVersion("0.4.1")] -[assembly: AssemblyFileVersion("0.4.1")] +[assembly: AssemblyVersion("0.4.2")] +[assembly: AssemblyFileVersion("0.4.2")] diff --git a/src/DataFactory/DataFactory.Management.Sdk/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactory.Management.Sdk/Properties/AssemblyInfo.cs index 87e33428e0c1..76e44fd0f900 100644 --- a/src/DataFactory/DataFactory.Management.Sdk/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactory.Management.Sdk/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("F0FA0885-A662-4E33-8495-2A7DC03A0855")] -[assembly: AssemblyVersion("1.19.2")] -[assembly: AssemblyFileVersion("1.19.2")] +[assembly: AssemblyVersion("1.19.3")] +[assembly: AssemblyFileVersion("1.19.3")] diff --git a/src/DataFactory/DataFactory/Az.DataFactory.psd1 b/src/DataFactory/DataFactory/Az.DataFactory.psd1 index 3977065742fe..b3f3f9852020 100644 --- a/src/DataFactory/DataFactory/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactory/Az.DataFactory.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/30/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.19.2' +ModuleVersion = '1.19.3' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.2.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataFactories.dll', @@ -172,9 +172,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added more support for M365 connection properties. -* Added more support for SnowfalkeV2 connection properties. -* Added more support for AzureDatabricks connection properties.' + ReleaseNotes = '* Added more support for SparkV2 and HiveV2 connection properties.' # Prerelease string of this module # Prerelease = '' diff --git a/src/DataFactory/DataFactory/ChangeLog.md b/src/DataFactory/DataFactory/ChangeLog.md index 54e060ac7754..9fc824724424 100644 --- a/src/DataFactory/DataFactory/ChangeLog.md +++ b/src/DataFactory/DataFactory/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.19.3 * Added more support for SparkV2 and HiveV2 connection properties. ## Version 1.19.2 diff --git a/src/DataFactory/DataFactory/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactory/Properties/AssemblyInfo.cs index 5c0ce3cdf4f3..3ac06bfd3886 100644 --- a/src/DataFactory/DataFactory/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactory/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("1.19.2")] -[assembly: AssemblyFileVersion("1.19.2")] +[assembly: AssemblyVersion("1.19.3")] +[assembly: AssemblyFileVersion("1.19.3")] diff --git a/src/DataFactory/DataFactoryV1/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactoryV1/Properties/AssemblyInfo.cs index 6224d71711d3..0c5adae5890e 100644 --- a/src/DataFactory/DataFactoryV1/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactoryV1/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("1.19.2")] -[assembly: AssemblyFileVersion("1.19.2")] +[assembly: AssemblyVersion("1.19.3")] +[assembly: AssemblyFileVersion("1.19.3")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactories.Test")] #endif diff --git a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs index 7398cec09e4e..342fbb720fb5 100644 --- a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("1.19.2")] -[assembly: AssemblyFileVersion("1.19.2")] +[assembly: AssemblyVersion("1.19.3")] +[assembly: AssemblyFileVersion("1.19.3")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.Test")] diff --git a/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 b/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 index c72f7be43d5f..ef01a5c55311 100644 --- a/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 +++ b/src/DeviceRegistry/DeviceRegistry/Az.DeviceRegistry.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.1.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'DeviceRegistry.Autorest/bin/Az.DeviceRegistry.private.dll' @@ -114,7 +114,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/DeviceRegistry/DeviceRegistry/ChangeLog.md b/src/DeviceRegistry/DeviceRegistry/ChangeLog.md index 155926c807a0..d6dbc08b6a54 100644 --- a/src/DeviceRegistry/DeviceRegistry/ChangeLog.md +++ b/src/DeviceRegistry/DeviceRegistry/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.1 * Fixed module name in module metadata ## Version 0.1.0 diff --git a/src/DeviceRegistry/DeviceRegistry/Properties/AssemblyInfo.cs b/src/DeviceRegistry/DeviceRegistry/Properties/AssemblyInfo.cs index c4b5b57aed9a..4fa5aa934d5c 100644 --- a/src/DeviceRegistry/DeviceRegistry/Properties/AssemblyInfo.cs +++ b/src/DeviceRegistry/DeviceRegistry/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("fc48a320-5752-4948-afda-3ebea03e7d8b")] -[assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] +[assembly: AssemblyVersion("0.1.1")] +[assembly: AssemblyFileVersion("0.1.1")] diff --git a/src/Fabric/Fabric/Az.Fabric.psd1 b/src/Fabric/Fabric/Az.Fabric.psd1 index 26a38f729335..b088ca682c2a 100644 --- a/src/Fabric/Fabric/Az.Fabric.psd1 +++ b/src/Fabric/Fabric/Az.Fabric.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Fabric.Autorest/bin/Az.Fabric.private.dll' @@ -110,7 +110,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/Fabric/Fabric/ChangeLog.md b/src/Fabric/Fabric/ChangeLog.md index c9b23a3e055b..8371763bf4b2 100644 --- a/src/Fabric/Fabric/ChangeLog.md +++ b/src/Fabric/Fabric/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.2 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/Fabric/Fabric/Properties/AssemblyInfo.cs b/src/Fabric/Fabric/Properties/AssemblyInfo.cs index 8984ff60a7cb..93745b6c1286 100644 --- a/src/Fabric/Fabric/Properties/AssemblyInfo.cs +++ b/src/Fabric/Fabric/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("45061698-16c0-4d7a-b366-7dc67e53ea7e")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.1.2")] +[assembly: AssemblyFileVersion("0.1.2")] diff --git a/src/Informatica/Informatica/Az.Informatica.psd1 b/src/Informatica/Informatica/Az.Informatica.psd1 index 5883d1ca82d3..d5901fb320c0 100644 --- a/src/Informatica/Informatica/Az.Informatica.psd1 +++ b/src/Informatica/Informatica/Az.Informatica.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Informatica.Autorest/bin/Az.Informatica.private.dll' @@ -119,7 +119,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/Informatica/Informatica/ChangeLog.md b/src/Informatica/Informatica/ChangeLog.md index bc25218939bc..6648b182a18a 100644 --- a/src/Informatica/Informatica/ChangeLog.md +++ b/src/Informatica/Informatica/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.2 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/Informatica/Informatica/Properties/AssemblyInfo.cs b/src/Informatica/Informatica/Properties/AssemblyInfo.cs index 790e601bbc74..f59fad4f1177 100644 --- a/src/Informatica/Informatica/Properties/AssemblyInfo.cs +++ b/src/Informatica/Informatica/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("e759f219-3777-4a13-8078-af4d35217f32")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.1.2")] +[assembly: AssemblyFileVersion("0.1.2")] diff --git a/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 b/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 index e073cddb22bd..8ec0b3909569 100644 --- a/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 +++ b/src/KubernetesRuntime/KubernetesRuntime/Az.KubernetesRuntime.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'KubernetesRuntime.Autorest/bin/Az.KubernetesRuntime.private.dll' @@ -131,7 +131,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md b/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md index 08492b0e2e15..3d9664224bfc 100644 --- a/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md +++ b/src/KubernetesRuntime/KubernetesRuntime/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.2.0 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/KubernetesRuntime/KubernetesRuntime/Properties/AssemblyInfo.cs b/src/KubernetesRuntime/KubernetesRuntime/Properties/AssemblyInfo.cs index 5379c11c8e85..2e28607792a3 100644 --- a/src/KubernetesRuntime/KubernetesRuntime/Properties/AssemblyInfo.cs +++ b/src/KubernetesRuntime/KubernetesRuntime/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("d47e9948-e979-41b5-99af-b8dc9406b512")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.2.0")] +[assembly: AssemblyFileVersion("0.2.0")] diff --git a/src/Mdp/Mdp/Az.Mdp.psd1 b/src/Mdp/Mdp/Az.Mdp.psd1 index dcd79c6e7f96..9b3a17a8e3f8 100644 --- a/src/Mdp/Mdp/Az.Mdp.psd1 +++ b/src/Mdp/Mdp/Az.Mdp.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Mdp.Autorest/bin/Az.Mdp.private.dll' @@ -108,7 +108,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/Mdp/Mdp/ChangeLog.md b/src/Mdp/Mdp/ChangeLog.md index 75a8e1382a16..06f65ca2246f 100644 --- a/src/Mdp/Mdp/ChangeLog.md +++ b/src/Mdp/Mdp/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.2 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/Mdp/Mdp/Properties/AssemblyInfo.cs b/src/Mdp/Mdp/Properties/AssemblyInfo.cs index f2c294d764f6..f41902e8e5ba 100644 --- a/src/Mdp/Mdp/Properties/AssemblyInfo.cs +++ b/src/Mdp/Mdp/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("819a0224-3335-4759-a43a-9cdf8b8007f2")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.1.2")] +[assembly: AssemblyFileVersion("0.1.2")] diff --git a/src/Migrate/Migrate/Az.Migrate.psd1 b/src/Migrate/Migrate/Az.Migrate.psd1 index 7110d8b9d308..206ba795420d 100644 --- a/src/Migrate/Migrate/Az.Migrate.psd1 +++ b/src/Migrate/Migrate/Az.Migrate.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.7.1' +ModuleVersion = '2.8.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Migrate.Autorest/bin/Az.Migrate.private.dll' @@ -135,8 +135,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added validation for Data.Replication - - Added validation to protect virtual machines in ''New-AzMigrateLocalServerReplication''' + ReleaseNotes = '* Implemented the Get-AzMigrateServerMigrationStatus cmdlet to retrieve the replication status of servers in Azure Migrate. +* Fixed bugs in ''New-AzMigrateLocalServerReplication'' that caused HyperVSite or VMwareSite not found.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Migrate/Migrate/ChangeLog.md b/src/Migrate/Migrate/ChangeLog.md index 9abcaba3b8e0..41846c6c9826 100644 --- a/src/Migrate/Migrate/ChangeLog.md +++ b/src/Migrate/Migrate/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 2.8.0 * Implemented the Get-AzMigrateServerMigrationStatus cmdlet to retrieve the replication status of servers in Azure Migrate. * Fixed bugs in `New-AzMigrateLocalServerReplication` that caused HyperVSite or VMwareSite not found. diff --git a/src/Migrate/Migrate/Properties/AssemblyInfo.cs b/src/Migrate/Migrate/Properties/AssemblyInfo.cs index 9497befd99b4..1709ca0d30ca 100644 --- a/src/Migrate/Migrate/Properties/AssemblyInfo.cs +++ b/src/Migrate/Migrate/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("49de559e-8965-4e80-ba75-d2f2266a0abd")] -[assembly: AssemblyVersion("2.7.1")] -[assembly: AssemblyFileVersion("2.7.1")] +[assembly: AssemblyVersion("2.8.0")] +[assembly: AssemblyFileVersion("2.8.0")] diff --git a/src/MobileNetwork/MobileNetwork/Az.MobileNetwork.psd1 b/src/MobileNetwork/MobileNetwork/Az.MobileNetwork.psd1 index 10762d7cbbc5..01a228b8b400 100644 --- a/src/MobileNetwork/MobileNetwork/Az.MobileNetwork.psd1 +++ b/src/MobileNetwork/MobileNetwork/Az.MobileNetwork.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/22/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.4.2' +ModuleVersion = '0.5.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'MobileNetwork.Autorest/bin/Az.MobileNetwork.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'MobileNetwork.Autorest/Az.MobileNetwork.format.ps1xml' @@ -140,7 +140,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'MobileNetwork' + Tags = 'Azure','ResourceManager','ARM','PSModule','MobileNetwork' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -152,7 +152,11 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). +* The parameters of the ''New-AzMobileNetworkPacketCoreControlPlane'', ''New-AzMobileNetworkSimGroup'', ''Update-AzMobileNetworkPacketCoreControlPlane'' and ''Update-AzMobileNetworkSimGroup'' commands have changed. + * ''IdentityType'' has been removed. ''EnableSystemAssignedIdentity'' is used to enable/disable system-assigned identities. + * The type of ''UserAssignedIdentity'' is simplified to an array of strings that is used to specify the user''s assigned identity. +* Added deprecation announcement for Azure Private 5G Core retirement.' # Prerelease string of this module # Prerelease = '' @@ -165,7 +169,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/MobileNetwork/MobileNetwork/ChangeLog.md b/src/MobileNetwork/MobileNetwork/ChangeLog.md index bc0ee84eb861..fe1a2d7e4e76 100644 --- a/src/MobileNetwork/MobileNetwork/ChangeLog.md +++ b/src/MobileNetwork/MobileNetwork/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.5.0 * Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). * The parameters of the `New-AzMobileNetworkPacketCoreControlPlane`, `New-AzMobileNetworkSimGroup`, `Update-AzMobileNetworkPacketCoreControlPlane` and `Update-AzMobileNetworkSimGroup` commands have changed. * `IdentityType` has been removed. `EnableSystemAssignedIdentity` is used to enable/disable system-assigned identities. diff --git a/src/MobileNetwork/MobileNetwork/Properties/AssemblyInfo.cs b/src/MobileNetwork/MobileNetwork/Properties/AssemblyInfo.cs index 3795cb801952..b9682058e6f7 100644 --- a/src/MobileNetwork/MobileNetwork/Properties/AssemblyInfo.cs +++ b/src/MobileNetwork/MobileNetwork/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5a417931-645b-480a-800d-feb2c5a08768")] -[assembly: AssemblyVersion("0.4.2")] -[assembly: AssemblyFileVersion("0.4.2")] +[assembly: AssemblyVersion("0.5.0")] +[assembly: AssemblyFileVersion("0.5.0")] diff --git a/src/MySql/MySql/Az.MySql.psd1 b/src/MySql/MySql/Az.MySql.psd1 index 88854d8a09fb..e258f903f587 100644 --- a/src/MySql/MySql/Az.MySql.psd1 +++ b/src/MySql/MySql/Az.MySql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/11/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.3.0' +ModuleVersion = '1.4.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.2.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'MySql.Autorest/bin/Az.MySql.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'MySql.Autorest/Az.MySql.format.ps1xml' @@ -123,7 +123,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'MySql' + Tags = 'Azure','ResourceManager','ARM','PSModule','MySql' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -135,7 +135,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '- Enhanced ''Restore-AzMySqlFlexibleServer'' functionality with GeoRestore support' # Prerelease string of this module # Prerelease = '' @@ -148,7 +148,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/MySql/MySql/ChangeLog.md b/src/MySql/MySql/ChangeLog.md index d77014eee51c..8938c37a9857 100644 --- a/src/MySql/MySql/ChangeLog.md +++ b/src/MySql/MySql/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.4.0 - Enhanced `Restore-AzMySqlFlexibleServer` functionality with GeoRestore support ## Version 1.3.0 diff --git a/src/MySql/MySql/Properties/AssemblyInfo.cs b/src/MySql/MySql/Properties/AssemblyInfo.cs index 3f8d78dfd519..0d4a033999bf 100644 --- a/src/MySql/MySql/Properties/AssemblyInfo.cs +++ b/src/MySql/MySql/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("00815AB0-DED8-4FE1-A7F0-5A98B87EAA3D")] -[assembly: AssemblyVersion("1.3.0")] -[assembly: AssemblyFileVersion("1.3.0")] +[assembly: AssemblyVersion("1.4.0")] +[assembly: AssemblyFileVersion("1.4.0")] diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 4e50b3d919a7..e09da75f9b49 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.23.0' +ModuleVersion = '0.24.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk.dll' @@ -203,7 +203,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added ''NfsV4IdDomain'' to ''New-AzNetAppFilesAccount'' and ''Update-AzNetAppFilesAccount''' + ReleaseNotes = '* Added ''NfsV4IdDomain'' to ''New-AzNetAppFilesAccount'' and ''Update-AzNetAppFilesAccount'' +* Added added support CRR data recovery options for VolumeGroups with ''DataReplicationSourceId'', DataReplicationSchedule to ''New-AzNetAppFilesVolumeGroup'' +* Added ''OracleDatabaseSize'', ''NumberOfDataVolumes'', ''OracleDatabaseThroughput'' for Oracle Volume groups support in ''New-AzNetAppFilesVolumeGroup'' +* Added ''KeyVaultPrivateEndpointResourceId'', ''Zone'' to ''New-AzNetAppFilesVolumeGroup'' ' # Prerelease string of this module # Prerelease = '' diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index ea598a13becf..c59e9dfb5da8 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.24.0 * Added `NfsV4IdDomain` to `New-AzNetAppFilesAccount` and `Update-AzNetAppFilesAccount` * Added added support CRR data recovery options for VolumeGroups with `DataReplicationSourceId`, DataReplicationSchedule to `New-AzNetAppFilesVolumeGroup` * Added `OracleDatabaseSize`, `NumberOfDataVolumes`, `OracleDatabaseThroughput` for Oracle Volume groups support in `New-AzNetAppFilesVolumeGroup` diff --git a/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs index 4b835b6be549..cf48527b5206 100644 --- a/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs +++ b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("42656543-77AD-4968-BA4B-BE0778705625")] -[assembly: AssemblyVersion("0.23.0")] -[assembly: AssemblyFileVersion("0.23.0")] +[assembly: AssemblyVersion("0.24.0")] +[assembly: AssemblyFileVersion("0.24.0")] diff --git a/src/NetworkFunction/NetworkFunction/Az.NetworkFunction.psd1 b/src/NetworkFunction/NetworkFunction/Az.NetworkFunction.psd1 index 2153df8e7539..2e368320a16b 100644 --- a/src/NetworkFunction/NetworkFunction/Az.NetworkFunction.psd1 +++ b/src/NetworkFunction/NetworkFunction/Az.NetworkFunction.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/19/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.5' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'NetworkFunction.Autorest/bin/Az.NetworkFunction.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'NetworkFunction.Autorest/Az.NetworkFunction.format.ps1xml' @@ -104,7 +104,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'NetworkFunction' + Tags = 'Azure','ResourceManager','ARM','PSModule','NetworkFunction' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -116,7 +116,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).' # Prerelease string of this module # Prerelease = '' @@ -129,7 +129,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/NetworkFunction/NetworkFunction/ChangeLog.md b/src/NetworkFunction/NetworkFunction/ChangeLog.md index f0ad9e0758e8..c519c2314c55 100644 --- a/src/NetworkFunction/NetworkFunction/ChangeLog.md +++ b/src/NetworkFunction/NetworkFunction/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.2.0 * Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). ## Version 0.1.5 diff --git a/src/NetworkFunction/NetworkFunction/Properties/AssemblyInfo.cs b/src/NetworkFunction/NetworkFunction/Properties/AssemblyInfo.cs index dd88ce259cbe..2050b979f35b 100644 --- a/src/NetworkFunction/NetworkFunction/Properties/AssemblyInfo.cs +++ b/src/NetworkFunction/NetworkFunction/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("7a174813-ba42-4145-bf07-8f570b529b42")] -[assembly: AssemblyVersion("0.1.5")] -[assembly: AssemblyFileVersion("0.1.5")] +[assembly: AssemblyVersion("0.2.0")] +[assembly: AssemblyFileVersion("0.2.0")] diff --git a/src/Oracle/Oracle/Az.Oracle.psd1 b/src/Oracle/Oracle/Az.Oracle.psd1 index b45bf61d829c..a2a6d3b413f9 100644 --- a/src/Oracle/Oracle/Az.Oracle.psd1 +++ b/src/Oracle/Oracle/Az.Oracle.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.1.0' +ModuleVersion = '1.1.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Oracle.Autorest/bin/Az.Oracle.private.dll' @@ -129,7 +129,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/Oracle/Oracle/ChangeLog.md b/src/Oracle/Oracle/ChangeLog.md index 52a9bdcf9c1c..de9b421ec0f5 100644 --- a/src/Oracle/Oracle/ChangeLog.md +++ b/src/Oracle/Oracle/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.1.1 * Fixed module name in module metadata ## Version 1.1.0 diff --git a/src/Oracle/Oracle/Properties/AssemblyInfo.cs b/src/Oracle/Oracle/Properties/AssemblyInfo.cs index cd071c310c9a..9e4bd9959f0e 100644 --- a/src/Oracle/Oracle/Properties/AssemblyInfo.cs +++ b/src/Oracle/Oracle/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("fba0df65-db03-40b2-8c2c-fe3d1d3bfcf8")] -[assembly: AssemblyVersion("1.1.0")] -[assembly: AssemblyFileVersion("1.1.0")] +[assembly: AssemblyVersion("1.1.1")] +[assembly: AssemblyFileVersion("1.1.1")] diff --git a/src/PostgreSql/PostgreSql/Az.PostgreSql.psd1 b/src/PostgreSql/PostgreSql/Az.PostgreSql.psd1 index de2e0de89f79..42bbac911eeb 100644 --- a/src/PostgreSql/PostgreSql/Az.PostgreSql.psd1 +++ b/src/PostgreSql/PostgreSql/Az.PostgreSql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.2.0' +ModuleVersion = '1.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.2.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'PostgreSql.Autorest/bin/Az.PostgreSql.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'PostgreSql.Autorest/Az.PostgreSql.format.ps1xml' @@ -126,7 +126,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'PostgreSql' + Tags = 'Azure','ResourceManager','ARM','PSModule','PostgreSql' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -138,7 +138,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Added support for Geo-restore in ''Restore-AzPostgreSqlFlexibleServer'' cmdlets. + - Automatically determined the paired region for the source server during geo-restore. + - Enhanced validation for private access and DNS zone configurations during restore operations.' # Prerelease string of this module # Prerelease = '' @@ -151,7 +153,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/PostgreSql/PostgreSql/ChangeLog.md b/src/PostgreSql/PostgreSql/ChangeLog.md index e0b37c2475fb..e3c2014ae17a 100644 --- a/src/PostgreSql/PostgreSql/ChangeLog.md +++ b/src/PostgreSql/PostgreSql/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release +## Version 1.3.0 + * Added support for Geo-restore in `Restore-AzPostgreSqlFlexibleServer` cmdlets. - Automatically determined the paired region for the source server during geo-restore. - Enhanced validation for private access and DNS zone configurations during restore operations. diff --git a/src/PostgreSql/PostgreSql/Properties/AssemblyInfo.cs b/src/PostgreSql/PostgreSql/Properties/AssemblyInfo.cs index 728a452335df..a47889f56aa9 100644 --- a/src/PostgreSql/PostgreSql/Properties/AssemblyInfo.cs +++ b/src/PostgreSql/PostgreSql/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("1F0D566E-2A71-4345-9B58-B680585DCE4D")] -[assembly: AssemblyVersion("1.2.0")] -[assembly: AssemblyFileVersion("1.2.0")] +[assembly: AssemblyVersion("1.3.0")] +[assembly: AssemblyFileVersion("1.3.0")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.CrossRegionRestore.Management.Sdk/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.CrossRegionRestore.Management.Sdk/Properties/AssemblyInfo.cs index 4fce5437561d..bfa0d8f113b6 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.CrossRegionRestore.Management.Sdk/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.CrossRegionRestore.Management.Sdk/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("2330c44a-18bf-46d8-976d-64e1fda5fc16")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs index 7d2f312e9bee..0cd7b7408dd2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs index 7d2f312e9bee..0cd7b7408dd2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Management.Sdk/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Management.Sdk/Properties/AssemblyInfo.cs index 571898201d22..ba1112540ec1 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Management.Sdk/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Management.Sdk/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("d87b76bd-aa06-49ba-bfd7-f0f4984f65c3")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs index 7d2f312e9bee..0cd7b7408dd2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs index 7d2f312e9bee..0cd7b7408dd2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs index 7d2f312e9bee..0cd7b7408dd2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs index e933e44cb2a9..284aa3c1ca8c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.Management.Sdk/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.Management.Sdk/Properties/AssemblyInfo.cs index 34b9f22f4e95..09325b09531b 100644 --- a/src/RecoveryServices/RecoveryServices.Management.Sdk/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.Management.Sdk/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("f1393c09-b594-43e7-8987-81393db883d0")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Management.Sdk/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery.Management.Sdk/Properties/AssemblyInfo.cs index 02a98012664e..f7c499bd3562 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Management.Sdk/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Management.Sdk/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ [assembly: CLSCompliant(false)] [assembly: Guid("257dfc35-05a3-4134-9a1b-086b73cf3123")] -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs index 5b73f56a1b35..0955074749f4 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 61ddc95498d3..fc023d515f03 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '7.7.1' +ModuleVersion = '7.7.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.PowerShell.AutoMapper.dll', @@ -304,8 +304,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Updated ''GetAzureRmRecoveryServicesBackupSchedulePolicyObject'' to default the ''PolicySubType'' to ''Enhanced'' for AzureVM. -* Updated Azure Backup SDK version to support protecting TVM with standard policy.' + ReleaseNotes = '* Added fix for resume protection with AzureFileshare. +* Added fix for Get backup item for MSSQL soft deleted items. +* Added check to compare the VM resource group in the list of VMs returned for registration. +* Added RetainRecoveryPointsAsPerPolicy as MUA protected operation in Disable-AzRecoveryServicesBackupProtection cmdlet.' # Prerelease string of this module # Prerelease = '' diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index a87703e14cde..2078b3cdd536 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 7.7.2 * Added fix for resume protection with AzureFileshare. * Added fix for Get backup item for MSSQL soft deleted items. * Added check to compare the VM resource group in the list of VMs returned for registration. diff --git a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs index 275ca5e087c5..8328f748781d 100644 --- a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs +++ b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("7.7.1")] -[assembly: AssemblyFileVersion("7.7.1")] +[assembly: AssemblyVersion("7.7.2")] +[assembly: AssemblyFileVersion("7.7.2")] diff --git a/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 b/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 index 1ed14273259e..884c07d719cd 100644 --- a/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 +++ b/src/SelfHelp/SelfHelp/Az.SelfHelp.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/26/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.1' +ModuleVersion = '0.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'SelfHelp.Autorest/bin/Az.SelfHelp.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'SelfHelp.Autorest/Az.SelfHelp.format.ps1xml' @@ -105,7 +105,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'SelfHelp' + Tags = 'Azure','ResourceManager','ARM','PSModule','SelfHelp' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -117,7 +117,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).' # Prerelease string of this module # Prerelease = '' @@ -130,7 +130,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/SelfHelp/SelfHelp/ChangeLog.md b/src/SelfHelp/SelfHelp/ChangeLog.md index 39883b50fa46..9fe268c80182 100644 --- a/src/SelfHelp/SelfHelp/ChangeLog.md +++ b/src/SelfHelp/SelfHelp/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.3.0 * Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). ## Version 0.2.1 diff --git a/src/SelfHelp/SelfHelp/Properties/AssemblyInfo.cs b/src/SelfHelp/SelfHelp/Properties/AssemblyInfo.cs index 10b5c6a480d7..0baee34100ca 100644 --- a/src/SelfHelp/SelfHelp/Properties/AssemblyInfo.cs +++ b/src/SelfHelp/SelfHelp/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("eec65845-b687-45bc-bdd2-6022dab00112")] -[assembly: AssemblyVersion("0.2.1")] -[assembly: AssemblyFileVersion("0.2.1")] +[assembly: AssemblyVersion("0.3.0")] +[assembly: AssemblyFileVersion("0.3.0")] diff --git a/src/ServiceLinker/ServiceLinker/Az.ServiceLinker.psd1 b/src/ServiceLinker/ServiceLinker/Az.ServiceLinker.psd1 index 1e743b445351..dcd4b17a5498 100644 --- a/src/ServiceLinker/ServiceLinker/Az.ServiceLinker.psd1 +++ b/src/ServiceLinker/ServiceLinker/Az.ServiceLinker.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/16/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.3' +ModuleVersion = '0.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.2.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'ServiceLinker.Autorest/bin/Az.ServiceLinker.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'ServiceLinker.Autorest/Az.ServiceLinker.format.ps1xml' @@ -118,7 +118,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'ServiceLinker' + Tags = 'Azure','ResourceManager','ARM','PSModule','ServiceLinker' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -130,7 +130,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).' # Prerelease string of this module # Prerelease = '' @@ -143,7 +143,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/ServiceLinker/ServiceLinker/ChangeLog.md b/src/ServiceLinker/ServiceLinker/ChangeLog.md index 4263b9f6856b..83b4c382a6d6 100644 --- a/src/ServiceLinker/ServiceLinker/ChangeLog.md +++ b/src/ServiceLinker/ServiceLinker/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.3.0 * Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). ## Version 0.2.3 diff --git a/src/ServiceLinker/ServiceLinker/Properties/AssemblyInfo.cs b/src/ServiceLinker/ServiceLinker/Properties/AssemblyInfo.cs index 460455eb946d..815abf0db3c1 100644 --- a/src/ServiceLinker/ServiceLinker/Properties/AssemblyInfo.cs +++ b/src/ServiceLinker/ServiceLinker/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("f547ca22-6941-42da-8f7d-31ad739d7f04")] -[assembly: AssemblyVersion("0.2.3")] -[assembly: AssemblyFileVersion("0.2.3")] +[assembly: AssemblyVersion("0.3.0")] +[assembly: AssemblyFileVersion("0.3.0")] diff --git a/src/StorageAction/StorageAction/Az.StorageAction.psd1 b/src/StorageAction/StorageAction/Az.StorageAction.psd1 index 488f6c594a22..9d40a6c12c2b 100644 --- a/src/StorageAction/StorageAction/Az.StorageAction.psd1 +++ b/src/StorageAction/StorageAction/Az.StorageAction.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/9/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.1' +ModuleVersion = '0.1.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'StorageAction.Autorest/bin/Az.StorageAction.private.dll' @@ -113,7 +113,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Fixed module name in module metadata' # Prerelease string of this module # Prerelease = '' diff --git a/src/StorageAction/StorageAction/ChangeLog.md b/src/StorageAction/StorageAction/ChangeLog.md index 2c2844eb4d38..0ebc1634f791 100644 --- a/src/StorageAction/StorageAction/ChangeLog.md +++ b/src/StorageAction/StorageAction/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.1.2 * Fixed module name in module metadata ## Version 0.1.1 diff --git a/src/StorageAction/StorageAction/Properties/AssemblyInfo.cs b/src/StorageAction/StorageAction/Properties/AssemblyInfo.cs index 8b8e5e88f9c4..eeb9022f03e8 100644 --- a/src/StorageAction/StorageAction/Properties/AssemblyInfo.cs +++ b/src/StorageAction/StorageAction/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("946c809c-3659-4337-bd70-5ecd2d1097fc")] -[assembly: AssemblyVersion("0.1.1")] -[assembly: AssemblyFileVersion("0.1.1")] +[assembly: AssemblyVersion("0.1.2")] +[assembly: AssemblyFileVersion("0.1.2")] diff --git a/src/StorageCache/StorageCache/Az.StorageCache.psd1 b/src/StorageCache/StorageCache/Az.StorageCache.psd1 index 8b26015342fb..60a61b289e6b 100644 --- a/src/StorageCache/StorageCache/Az.StorageCache.psd1 +++ b/src/StorageCache/StorageCache/Az.StorageCache.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/16/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.2' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'StorageCache.Autorest/bin/Az.StorageCache.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -ScriptsToProcess = @() +# ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = @() +# TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = 'StorageCache.Autorest/Az.StorageCache.format.ps1xml' @@ -102,7 +102,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'StorageCache' + Tags = 'Azure','ResourceManager','ARM','PSModule','StorageCache' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -114,7 +114,12 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Upgraded nuget package to signed package.' + ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). +* Removed all cmdlets related to the retired ''Storage Caches'' resource. +* Updated ''New-AzStorageCacheAmlFileSystem'': + - Removed ''-IdentityType'' parameter to support new Managed Identity settings. + - Renamed ''-IdentityUserAssignedIdentity'' to ''-UserAssignedIdentity''. + - Added ''EnableSystemAssignedIdentity'' to enable/disable system-assigned identities.' # Prerelease string of this module # Prerelease = '' @@ -127,7 +132,7 @@ PrivateData = @{ } # End of PSData hashtable -} # End of PrivateData hashtable + } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/StorageCache/StorageCache/ChangeLog.md b/src/StorageCache/StorageCache/ChangeLog.md index 4ea751d8494d..9921f7ee022f 100644 --- a/src/StorageCache/StorageCache/ChangeLog.md +++ b/src/StorageCache/StorageCache/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.2.0 * Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). * Removed all cmdlets related to the retired `Storage Caches` resource. * Updated `New-AzStorageCacheAmlFileSystem`: diff --git a/src/StorageCache/StorageCache/Properties/AssemblyInfo.cs b/src/StorageCache/StorageCache/Properties/AssemblyInfo.cs index 86acd2775cc5..58453b3c59b0 100644 --- a/src/StorageCache/StorageCache/Properties/AssemblyInfo.cs +++ b/src/StorageCache/StorageCache/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("29c726d4-260f-48a0-a50a-a21126a26f3c")] -[assembly: AssemblyVersion("0.1.2")] -[assembly: AssemblyFileVersion("0.1.2")] +[assembly: AssemblyVersion("0.2.0")] +[assembly: AssemblyFileVersion("0.2.0")] diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index ee696d0afcc5..603c460e4fe2 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/14/2025 +# Generated on: 5/28/2025 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '14.0.0' +ModuleVersion = '14.1.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '7.0.0'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.2.0'; }, @@ -69,7 +69,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.Cdn'; RequiredVersion = '5.0.0'; }, @{ModuleName = 'Az.CloudService'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.16.0'; }, - @{ModuleName = 'Az.Compute'; RequiredVersion = '10.0.0'; }, + @{ModuleName = 'Az.Compute'; RequiredVersion = '10.0.1'; }, @{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.ConnectedMachine'; RequiredVersion = '1.1.1'; }, @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '4.1.1'; }, @@ -77,7 +77,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.18.0'; }, @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.2.1'; }, @{ModuleName = 'Az.Databricks'; RequiredVersion = '1.10.0'; }, - @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.19.2'; }, + @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.19.3'; }, @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.DataProtection'; RequiredVersion = '2.7.0'; }, @@ -106,20 +106,20 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.ManagedServiceIdentity'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.ManagedServices'; RequiredVersion = '3.1.0'; }, @{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '2.2.0'; }, - @{ModuleName = 'Az.Migrate'; RequiredVersion = '2.7.1'; }, + @{ModuleName = 'Az.Migrate'; RequiredVersion = '2.8.0'; }, @{ModuleName = 'Az.Monitor'; RequiredVersion = '6.0.2'; }, - @{ModuleName = 'Az.MySql'; RequiredVersion = '1.3.0'; }, + @{ModuleName = 'Az.MySql'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.Network'; RequiredVersion = '7.17.0'; }, @{ModuleName = 'Az.NetworkCloud'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.Nginx'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '3.3.0'; }, - @{ModuleName = 'Az.Oracle'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.Oracle'; RequiredVersion = '1.1.1'; }, @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.7.1'; }, - @{ModuleName = 'Az.PostgreSql'; RequiredVersion = '1.2.0'; }, + @{ModuleName = 'Az.PostgreSql'; RequiredVersion = '1.3.0'; }, @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.2.0'; }, - @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '7.7.1'; }, + @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '7.7.2'; }, @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.11.0'; }, @{ModuleName = 'Az.RedisEnterpriseCache'; RequiredVersion = '1.5.0'; }, @{ModuleName = 'Az.Relay'; RequiredVersion = '2.1.0'; }, @@ -199,72 +199,110 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '14.0.0 - May 2025 + ReleaseNotes = '14.1.0 - June 2025 Az.Accounts -* Changed the default output access token of ''Get-AzAccessToken'' from plain text to ''SecureString''. -* Removed the warning message about failing to initialize PSStyle in automation runbooks. [#26155] -* Increased the timeout for tab-completion of location, resource group, etc. to 10 seconds. - -Az.Aks -* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). -* Updated the default value of ''-NodeVmSize'' parameter in ''New-AzAksCluster'' and ''-VmSize'' parameter in ''New-AzAksNodePool'' from ''Standard_D2_V2'' to being dynamically selected by the AKS resource provider based on quota and capacity in the next major release. - -Az.AppConfiguration -* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). - -Az.Cdn -* Upgraded Api version to 2025-04-15 -* Added support for cipher -* Added support for migration from classic cdn to afdx +* Upgrade Azure.Core to 1.45.0 Az.Compute -* Added new properties ''Architecture'', ''HyperVGeneration'', and ''ImageDeprecationStatus'' to be returned in ''Get-AzVMImage'' ListVMImage parameter set. -* Deprecated ''Get-AzVMSize'' ''List Virtual Machine Size'' parameter set. -* Added new parameters ''EnableAutomaticZoneRebalance'', ''AutomaticZoneRebalanceStrategy'' and ''AutomaticZoneRebalanceBehavior'' to ''New-AzVmssConfig'' and ''Update-AzVmss'' cmdlets for VMSS Automatic Zone Rebalancing. +* Added breaking change message for ''New-AzVM'' and ''New-AzVmss'' cmdlets. -Az.EventHub -* Added parameters ''MaxReplicationLagDurationInSeconds'' and ''Replicalocation'' in cmdlets ''New-AzEventHubNamespace'' & ''Set-AzEventHubNamespace'' -* Added new cmdlets for doing namespace failover - ''Start-AzEventHubNamespaceFailOver'' -* Added new cmdlets for generating replication object for Replication parameter - ''New-AzEventHubLocationsNameObject'' - -Az.Functions -* Updated API client to latest commit for version 2023-12-01 -* Refreshed stack definitions -* Enforced runtime EOL policy for function app creation: block expired, warn if within 6 months - -Az.ManagedServiceIdentity -* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). +Az.DataFactory +* Added more support for SparkV2 and HiveV2 connection properties. Az.Migrate -* Added validation for Data.Replication - - Added validation to protect virtual machines in ''New-AzMigrateLocalServerReplication'' +* Implemented the Get-AzMigrateServerMigrationStatus cmdlet to retrieve the replication status of servers in Azure Migrate. +* Fixed bugs in ''New-AzMigrateLocalServerReplication'' that caused HyperVSite or VMwareSite not found. + +Az.MySql +- Enhanced ''Restore-AzMySqlFlexibleServer'' functionality with GeoRestore support Az.Network +* Added properties ''PublicIpAddressesV6'', ''PublicIpPrefixesV6'', and ''SourceVirtualNetwork'' to NatGateway, as well as support for it for the following cmdlets: + - ''New-AzNatGateway'' + - ''Set-AzNatGateway'' +* Added property ''DefaultPublicNatGateway'' to VirtualNetwork. * Onboarded ''Microsoft.FluidRelay/fluidRelayServers'' to private link cmdlets +* Added cmdlet ''Get-AzLoadBalancerRuleHealth'' for Load Balancer Rule Health. +* Added property ''EnableConnectionTracking'' to Load Balancing Rule, as well as support for it for the following cmdlets: + - ''Add-AzLoadBalancerRuleConfig'' + - ''New-AzLoadBalancerRuleConfig'' + - ''Set-AzLoadBalancerRuleConfig'' +* Added cmdlet for migration of basic IP based deployment to Standard IP based VMSS deployments for VirtualNetworkGateways + - ''New-AzVirtualNetworkGatewayMigrationParameter'' + - ''Invoke-AzVirtualNetworkGatewayPrepareMigration'' + - ''Invoke-AzVirtualNetworkGatewayExecuteMigration'' + - ''Invoke-AzVirtualNetworkGatewayCommitMigration'' + - ''Invoke-AzVirtualNetworkGatewayAbortMigration'' +* Added cmdlets for CRUD operations of NetworkSecurityPerimeter service + - Cmdlets for NetworkSecurityPerimeter operations + - ''New-AzNetworkSecurityPerimeter'' + - ''Get-AzNetworkSecurityPerimeter'' + - ''Update-AzNetworkSecurityPerimeter'' + - ''Remove-AzNetworkSecurityPerimeter'' + - Cmdlets for NetworkSecurityPerimeter profile operations + - ''New-AzNetworkSecurityPerimeterProfile'' + - ''Get-AzNetworkSecurityPerimeterProfile'' + - ''Remove-AzNetworkSecurityPerimeterProfile'' + - Cmdlets for NetworkSecurityPerimeter association operations + - ''New-AzNetworkSecurityPerimeterAssociation'' + - ''Get-AzNetworkSecurityPerimeterAssociation'' + - ''Update-AzNetworkSecurityPerimeterAssociation'' + - ''Remove-AzNetworkSecurityPerimeterAssociation'' + - Cmdlets for NetworkSecurityPerimeter access rule operations + - ''New-AzNetworkSecurityPerimeterAccessRule'' + - ''Get-AzNetworkSecurityPerimeterAccessRule'' + - ''Update-AzNetworkSecurityPerimeterAccessRule'' + - ''Remove-AzNetworkSecurityPerimeterAccessRule'' + - Cmdlets for NetworkSecurityPerimeter link operations + - ''New-AzNetworkSecurityPerimeterLink'' + - ''Get-AzNetworkSecurityPerimeterLink'' + - ''Update-AzNetworkSecurityPerimeterLink'' + - ''Remove-AzNetworkSecurityPerimeterLink'' + - Cmdlets for NetworkSecurityPerimeter link reference operations + - ''Get-AzNetworkSecurityPerimeterLinkReference'' + - ''Remove-AzNetworkSecurityPerimeterLinkReference'' + - Cmdlets for NetworkSecurityPerimeter logging configuration operations + - ''New-AzNetworkSecurityPerimeterLoggingConfiguration'' + - ''Get-AzNetworkSecurityPerimeterLoggingConfiguration'' + - ''Update-AzNetworkSecurityPerimeterLoggingConfiguration'' + - ''Remove-AzNetworkSecurityPerimeterLoggingConfiguration'' + - Cmdlet to get NetworkSecurityPerimeter associable resource types + - ''Get-AzNetworkSecurityPerimeterAssociableResourceType'' +* Updated cmdlet to add the property of ''PartnerManagedResource'', and updated corresponding cmdlets. + - ''Get-AzNetworkVirtualAppliance'' +* Added cmdlet to retrieve boot diagnostic logs for a given NetworkVirtualAppliance VM instance: + - ''Get-AzNetworkVirtualApplianceBootDiagnostics'' +* Added etag property to Azure Virtual Network Manager -> IpamPool, VerifierWorkspace data models +* Onboarded ExpressRoute cmdlets to manage Microsoft Peering Advertised prefix validation: + - ''Get-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig'' + - ''Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig'' + - ''Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig'' + - ''Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig'' +* Updated cmdlets to support Advanced Connectivity feature for Azure VPN gateway. + - ''New-AzVirtualNetworkGateway'' + - ''Get-AzVirtualNetworkGateway'' + - ''Get-AzVirtualNetworkGatewayConnection'' +* Deleted NetworkWatcher cmdlets for ''Classic'' Connection Monitor + - ''Start-AzNetworkWatcherConnectionMonitor'' + - ''Get-AzNetworkWatcherConnectionMonitorReport'' +* Updated cmdlets to support topology-specific connectivity capabilities: + - ''New-AzNetworkManagerConnectivityConfiguration'' + - ''Set-AzNetworkManagerConnectivityConfiguration'' + - ''Get-AzNetworkManagerConnectivityConfiguration'' + +Az.Oracle +* Fixed module name in module metadata + +Az.PostgreSql +* Added support for Geo-restore in ''Restore-AzPostgreSqlFlexibleServer'' cmdlets. + - Automatically determined the paired region for the source server during geo-restore. + - Enhanced validation for private access and DNS zone configurations during restore operations. Az.RecoveryServices -* Updated ''GetAzureRmRecoveryServicesBackupSchedulePolicyObject'' to default the ''PolicySubType'' to ''Enhanced'' for AzureVM. -* Updated Azure Backup SDK version to support protecting TVM with standard policy. - -Az.RedisEnterpriseCache -* Added support for listing all SKUs a cluster can scale to. -* Added a new enum: NoCluster for Clustering policy. - -Az.Resources -* [Breaking Change] Updated API version of resource types from latest to DefaultApiVersion for cmdlets ''*-AzResource'' and ''Invoke-AzResourceAction''. - -Az.Sql -* Added server level action groups in enum of action groups to be able to be configured via auditing. - -Az.StackHCI -* Added EOL Message for 22H2 - -Az.Storage -* Removed MD5 from blob and file upload in some scenarios - - ''Set-AzStorageFileContent'' - - ''Set-AzStorageBlobContent'' -* Added prompt for customer confirmation for long running account migration operation . - - ''Start-AzStorageAccountMigration'' +* Added fix for resume protection with AzureFileshare. +* Added fix for Get backup item for MSSQL soft deleted items. +* Added check to compare the VM resource group in the list of VMs returned for registration. +* Added RetainRecoveryPointsAsPerPolicy as MUA protected operation in Disable-AzRecoveryServicesBackupProtection cmdlet. ' # Prerelease string of this module diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index a80135993ba7..fd5476b52cbd 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '14.0.0' +ModuleVersion = '14.1.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -52,42 +52,42 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; }, @{ModuleName = 'Az.ADDomainServices'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '7.0.0'; }, - @{ModuleName = 'Az.AksArc'; RequiredVersion = '0.1.3'; }, + @{ModuleName = 'Az.AksArc'; RequiredVersion = '0.1.4'; }, @{ModuleName = 'Az.Alb'; RequiredVersion = '0.1.4'; }, @{ModuleName = 'Az.AlertsManagement'; RequiredVersion = '0.7.0'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '4.1.0'; }, @{ModuleName = 'Az.App'; RequiredVersion = '2.0.1'; }, - @{ModuleName = 'Az.AppComplianceAutomation'; RequiredVersion = '0.1.3'; }, + @{ModuleName = 'Az.AppComplianceAutomation'; RequiredVersion = '0.1.4'; }, @{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '2.0.0'; }, @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.3.0'; }, - @{ModuleName = 'Az.ArcGateway'; RequiredVersion = '0.1.1'; }, + @{ModuleName = 'Az.ArcGateway'; RequiredVersion = '0.1.2'; }, @{ModuleName = 'Az.ArcResourceBridge'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.ArizeAI'; RequiredVersion = '0.1.0'; }, - @{ModuleName = 'Az.Astro'; RequiredVersion = '0.1.2'; }, + @{ModuleName = 'Az.Astro'; RequiredVersion = '0.1.3'; }, @{ModuleName = 'Az.Attestation'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.Automanage'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.Automation'; RequiredVersion = '1.11.1'; }, @{ModuleName = 'Az.BareMetal'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Batch'; RequiredVersion = '3.7.0'; }, @{ModuleName = 'Az.Billing'; RequiredVersion = '2.2.0'; }, - @{ModuleName = 'Az.BillingBenefits'; RequiredVersion = '0.2.0'; }, + @{ModuleName = 'Az.BillingBenefits'; RequiredVersion = '0.2.1'; }, @{ModuleName = 'Az.Blueprint'; RequiredVersion = '0.4.6'; }, @{ModuleName = 'Az.BotService'; RequiredVersion = '0.6.0'; }, @{ModuleName = 'Az.Carbon'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.Cdn'; RequiredVersion = '5.0.0'; }, @{ModuleName = 'Az.ChangeAnalysis'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'Az.Chaos'; RequiredVersion = '0.1.1'; }, + @{ModuleName = 'Az.Chaos'; RequiredVersion = '0.1.2'; }, @{ModuleName = 'Az.CloudService'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.16.0'; }, @{ModuleName = 'Az.Communication'; RequiredVersion = '0.6.0'; }, - @{ModuleName = 'Az.Compute'; RequiredVersion = '10.0.0'; }, - @{ModuleName = 'Az.ComputeFleet'; RequiredVersion = '0.1.0'; }, - @{ModuleName = 'Az.ComputeSchedule'; RequiredVersion = '0.1.0'; }, + @{ModuleName = 'Az.Compute'; RequiredVersion = '10.0.1'; }, + @{ModuleName = 'Az.ComputeFleet'; RequiredVersion = '0.1.1'; }, + @{ModuleName = 'Az.ComputeSchedule'; RequiredVersion = '0.1.1'; }, @{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.Confluent'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'Az.ConnectedKubernetes'; RequiredVersion = '0.15.0'; }, @@ -97,7 +97,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '4.1.1'; }, @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '4.3.0'; }, @{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.18.0'; }, - @{ModuleName = 'Az.CostManagement'; RequiredVersion = '0.4.1'; }, + @{ModuleName = 'Az.CostManagement'; RequiredVersion = '0.4.2'; }, @{ModuleName = 'Az.CustomLocation'; RequiredVersion = '0.2.1'; }, @{ModuleName = 'Az.CustomProviders'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Dashboard'; RequiredVersion = '0.2.0'; }, @@ -105,7 +105,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.2.1'; }, @{ModuleName = 'Az.Databricks'; RequiredVersion = '1.10.0'; }, @{ModuleName = 'Az.Datadog'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.19.2'; }, + @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.19.3'; }, @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.DataMigration'; RequiredVersion = '0.15.0'; }, @@ -115,7 +115,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.DesktopVirtualization'; RequiredVersion = '5.4.1'; }, @{ModuleName = 'Az.DevCenter'; RequiredVersion = '2.0.1'; }, @{ModuleName = 'Az.DeviceProvisioningServices'; RequiredVersion = '0.10.4'; }, - @{ModuleName = 'Az.DeviceRegistry'; RequiredVersion = '0.1.0'; }, + @{ModuleName = 'Az.DeviceRegistry'; RequiredVersion = '0.1.1'; }, @{ModuleName = 'Az.DeviceUpdate'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DigitalTwins'; RequiredVersion = '0.2.2'; }, @@ -129,7 +129,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.ElasticSan'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.EventGrid'; RequiredVersion = '2.2.0'; }, @{ModuleName = 'Az.EventHub'; RequiredVersion = '5.3.0'; }, - @{ModuleName = 'Az.Fabric'; RequiredVersion = '0.1.1'; }, + @{ModuleName = 'Az.Fabric'; RequiredVersion = '0.1.2'; }, @{ModuleName = 'Az.FirmwareAnalysis'; RequiredVersion = '0.1.4'; }, @{ModuleName = 'Az.Fleet'; RequiredVersion = '0.2.2'; }, @{ModuleName = 'Az.FluidRelay'; RequiredVersion = '0.2.0'; }, @@ -146,13 +146,13 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.HPCCache'; RequiredVersion = '0.1.3'; }, @{ModuleName = 'Az.ImageBuilder'; RequiredVersion = '0.5.0'; }, @{ModuleName = 'Az.ImportExport'; RequiredVersion = '0.3.0'; }, - @{ModuleName = 'Az.Informatica'; RequiredVersion = '0.1.1'; }, + @{ModuleName = 'Az.Informatica'; RequiredVersion = '0.1.2'; }, @{ModuleName = 'Az.IotCentral'; RequiredVersion = '0.10.3'; }, @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.8.0'; }, @{ModuleName = 'Az.IoTOperationsService'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.KeyVault'; RequiredVersion = '6.3.1'; }, @{ModuleName = 'Az.KubernetesConfiguration'; RequiredVersion = '0.8.0'; }, - @{ModuleName = 'Az.KubernetesRuntime'; RequiredVersion = '0.1.1'; }, + @{ModuleName = 'Az.KubernetesRuntime'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Kusto'; RequiredVersion = '2.4.0'; }, @{ModuleName = 'Az.LabServices'; RequiredVersion = '0.1.2'; }, @{ModuleName = 'Az.LambdaTest'; RequiredVersion = '0.1.0'; }, @@ -169,31 +169,32 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.MariaDb'; RequiredVersion = '0.2.3'; }, @{ModuleName = 'Az.Marketplace'; RequiredVersion = '0.5.2'; }, @{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '2.2.0'; }, - @{ModuleName = 'Az.Mdp'; RequiredVersion = '0.1.1'; }, - @{ModuleName = 'Az.Migrate'; RequiredVersion = '2.7.1'; }, + @{ModuleName = 'Az.Mdp'; RequiredVersion = '0.1.2'; }, + @{ModuleName = 'Az.Migrate'; RequiredVersion = '2.8.0'; }, @{ModuleName = 'Az.MixedReality'; RequiredVersion = '0.3.0'; }, - @{ModuleName = 'Az.MobileNetwork'; RequiredVersion = '0.4.2'; }, + @{ModuleName = 'Az.MobileNetwork'; RequiredVersion = '0.5.0'; }, + @{ModuleName = 'Az.MongoDB'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.Monitor'; RequiredVersion = '6.0.2'; }, @{ModuleName = 'Az.MonitoringSolutions'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'Az.MySql'; RequiredVersion = '1.3.0'; }, + @{ModuleName = 'Az.MySql'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.NeonPostgres'; RequiredVersion = '0.1.1'; }, - @{ModuleName = 'Az.NetAppFiles'; RequiredVersion = '0.23.0'; }, + @{ModuleName = 'Az.NetAppFiles'; RequiredVersion = '0.24.0'; }, @{ModuleName = 'Az.Network'; RequiredVersion = '7.17.0'; }, @{ModuleName = 'Az.NetworkAnalytics'; RequiredVersion = '0.1.2'; }, @{ModuleName = 'Az.NetworkCloud'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.NetworkFunction'; RequiredVersion = '0.1.5'; }, + @{ModuleName = 'Az.NetworkFunction'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.NewRelic'; RequiredVersion = '0.2.1'; }, @{ModuleName = 'Az.Nginx'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '3.3.0'; }, - @{ModuleName = 'Az.Oracle'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.Oracle'; RequiredVersion = '1.1.1'; }, @{ModuleName = 'Az.Orbital'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.PaloAltoNetworks'; RequiredVersion = '0.3.1'; }, @{ModuleName = 'Az.Peering'; RequiredVersion = '0.5.0'; }, - #@{ModuleName = 'Az.Pinecone'; RequiredVersion = '0.1.0'; }, + @{ModuleName = 'Az.Pinecone'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.7.1'; }, @{ModuleName = 'Az.Portal'; RequiredVersion = '0.4.0'; }, - @{ModuleName = 'Az.PostgreSql'; RequiredVersion = '1.2.0'; }, + @{ModuleName = 'Az.PostgreSql'; RequiredVersion = '1.3.0'; }, @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.ProviderHub'; RequiredVersion = '0.3.1'; }, @@ -201,7 +202,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.Quantum'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Qumulo'; RequiredVersion = '0.1.3'; }, @{ModuleName = 'Az.Quota'; RequiredVersion = '0.1.3'; }, - @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '7.7.1'; }, + @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '7.7.2'; }, @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.11.0'; }, @{ModuleName = 'Az.RedisEnterpriseCache'; RequiredVersion = '1.5.0'; }, @{ModuleName = 'Az.Relay'; RequiredVersion = '2.1.0'; }, @@ -213,10 +214,10 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.Search'; RequiredVersion = '0.10.1'; }, @{ModuleName = 'Az.Security'; RequiredVersion = '1.8.0'; }, @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.2.0'; }, - @{ModuleName = 'Az.SelfHelp'; RequiredVersion = '0.2.1'; }, + @{ModuleName = 'Az.SelfHelp'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '4.1.1'; }, @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '3.5.0'; }, - @{ModuleName = 'Az.ServiceLinker'; RequiredVersion = '0.2.3'; }, + @{ModuleName = 'Az.ServiceLinker'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'Az.SignalR'; RequiredVersion = '2.1.0'; }, @{ModuleName = 'Az.Sphere'; RequiredVersion = '0.1.3'; }, @{ModuleName = 'Az.SpringCloud'; RequiredVersion = '0.4.0'; }, @@ -227,8 +228,8 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.StackHCIVM'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.StandbyPool'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'Az.Storage'; RequiredVersion = '9.0.0'; }, - @{ModuleName = 'Az.StorageAction'; RequiredVersion = '0.1.1'; }, - @{ModuleName = 'Az.StorageCache'; RequiredVersion = '0.1.2'; }, + @{ModuleName = 'Az.StorageAction'; RequiredVersion = '0.1.2'; }, + @{ModuleName = 'Az.StorageCache'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.StorageMover'; RequiredVersion = '1.5.0'; }, @{ModuleName = 'Az.StorageSync'; RequiredVersion = '2.5.0'; }, @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '2.1.0'; }, @@ -242,7 +243,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.1'; }, @{ModuleName = 'Az.VMware'; RequiredVersion = '0.7.2'; }, @{ModuleName = 'Az.VoiceServices'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Websites'; RequiredVersion = '3.4.1'; }, - #@{ModuleName = 'Az.WeightsAndBiases'; RequiredVersion = '0.1.0'; }, + @{ModuleName = 'Az.WeightsAndBiases'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.WindowsIotServices'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'Az.Workloads'; RequiredVersion = '1.0.0'; }) diff --git a/tools/AzPreview/ChangeLog.md b/tools/AzPreview/ChangeLog.md index ea69f7ed50b3..ce34fe70fe0f 100644 --- a/tools/AzPreview/ChangeLog.md +++ b/tools/AzPreview/ChangeLog.md @@ -1,3 +1,186 @@ +## 14.1.0 - June 2025 +#### Az.Accounts 5.0.2 +* Upgrade Azure.Core to 1.45.0 + +#### Az.AksArc 0.1.4 +* Fixed module name in module metadata + +#### Az.AppComplianceAutomation 0.1.4 +* Fixed module name in module metadata + +#### Az.ArcGateway 0.1.2 +* Fixed module name in module metadata + +#### Az.Astro 0.1.3 +* Fixed module name in module metadata + +#### Az.BillingBenefits 0.2.1 +* Fixed module name in module metadata + +#### Az.Chaos 0.1.2 +* Fixed module name in module metadata + +#### Az.Compute 10.0.1 +* Added breaking change message for 'New-AzVM' and 'New-AzVmss' cmdlets. + +#### Az.ComputeFleet 0.1.1 +* Fixed module name in module metadata + +#### Az.ComputeSchedule 0.1.1 +* Fixed module name in module metadata + +#### Az.CostManagement 0.4.2 +* Fixed module name in module metadata + +#### Az.DataFactory 1.19.3 +* Added more support for SparkV2 and HiveV2 connection properties. + +#### Az.DeviceRegistry 0.1.1 +* Fixed module name in module metadata + +#### Az.Fabric 0.1.2 +* Fixed module name in module metadata + +#### Az.Informatica 0.1.2 +* Fixed module name in module metadata + +#### Az.KubernetesRuntime 0.2.0 +* Fixed module name in module metadata + +#### Az.Mdp 0.1.2 +* Fixed module name in module metadata + +#### Az.Migrate 2.8.0 +* Implemented the Get-AzMigrateServerMigrationStatus cmdlet to retrieve the replication status of servers in Azure Migrate. +* Fixed bugs in 'New-AzMigrateLocalServerReplication' that caused HyperVSite or VMwareSite not found. + +#### Az.MobileNetwork 0.5.0 +* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). +* The parameters of the 'New-AzMobileNetworkPacketCoreControlPlane', 'New-AzMobileNetworkSimGroup', 'Update-AzMobileNetworkPacketCoreControlPlane' and 'Update-AzMobileNetworkSimGroup' commands have changed. + * 'IdentityType' has been removed. 'EnableSystemAssignedIdentity' is used to enable/disable system-assigned identities. + * The type of 'UserAssignedIdentity' is simplified to an array of strings that is used to specify the user's assigned identity. +* Added deprecation announcement for Azure Private 5G Core retirement. + +#### Az.MongoDB 0.1.0 +* First preview release for module Az.MongoDB + +#### Az.MySql 1.4.0 +- Enhanced 'Restore-AzMySqlFlexibleServer' functionality with GeoRestore support + +#### Az.NetAppFiles 0.24.0 +* Added 'NfsV4IdDomain' to 'New-AzNetAppFilesAccount' and 'Update-AzNetAppFilesAccount' +* Added added support CRR data recovery options for VolumeGroups with 'DataReplicationSourceId', DataReplicationSchedule to 'New-AzNetAppFilesVolumeGroup' +* Added 'OracleDatabaseSize', 'NumberOfDataVolumes', 'OracleDatabaseThroughput' for Oracle Volume groups support in 'New-AzNetAppFilesVolumeGroup' +* Added 'KeyVaultPrivateEndpointResourceId', 'Zone' to 'New-AzNetAppFilesVolumeGroup' + +#### Az.Network 7.17.0 +* Added properties 'PublicIpAddressesV6', 'PublicIpPrefixesV6', and 'SourceVirtualNetwork' to NatGateway, as well as support for it for the following cmdlets: + - 'New-AzNatGateway' + - 'Set-AzNatGateway' +* Added property 'DefaultPublicNatGateway' to VirtualNetwork. +* Onboarded 'Microsoft.FluidRelay/fluidRelayServers' to private link cmdlets +* Added cmdlet 'Get-AzLoadBalancerRuleHealth' for Load Balancer Rule Health. +* Added property 'EnableConnectionTracking' to Load Balancing Rule, as well as support for it for the following cmdlets: + - 'Add-AzLoadBalancerRuleConfig' + - 'New-AzLoadBalancerRuleConfig' + - 'Set-AzLoadBalancerRuleConfig' +* Added cmdlet for migration of basic IP based deployment to Standard IP based VMSS deployments for VirtualNetworkGateways + - 'New-AzVirtualNetworkGatewayMigrationParameter' + - 'Invoke-AzVirtualNetworkGatewayPrepareMigration' + - 'Invoke-AzVirtualNetworkGatewayExecuteMigration' + - 'Invoke-AzVirtualNetworkGatewayCommitMigration' + - 'Invoke-AzVirtualNetworkGatewayAbortMigration' +* Added cmdlets for CRUD operations of NetworkSecurityPerimeter service + - Cmdlets for NetworkSecurityPerimeter operations + - 'New-AzNetworkSecurityPerimeter' + - 'Get-AzNetworkSecurityPerimeter' + - 'Update-AzNetworkSecurityPerimeter' + - 'Remove-AzNetworkSecurityPerimeter' + - Cmdlets for NetworkSecurityPerimeter profile operations + - 'New-AzNetworkSecurityPerimeterProfile' + - 'Get-AzNetworkSecurityPerimeterProfile' + - 'Remove-AzNetworkSecurityPerimeterProfile' + - Cmdlets for NetworkSecurityPerimeter association operations + - 'New-AzNetworkSecurityPerimeterAssociation' + - 'Get-AzNetworkSecurityPerimeterAssociation' + - 'Update-AzNetworkSecurityPerimeterAssociation' + - 'Remove-AzNetworkSecurityPerimeterAssociation' + - Cmdlets for NetworkSecurityPerimeter access rule operations + - 'New-AzNetworkSecurityPerimeterAccessRule' + - 'Get-AzNetworkSecurityPerimeterAccessRule' + - 'Update-AzNetworkSecurityPerimeterAccessRule' + - 'Remove-AzNetworkSecurityPerimeterAccessRule' + - Cmdlets for NetworkSecurityPerimeter link operations + - 'New-AzNetworkSecurityPerimeterLink' + - 'Get-AzNetworkSecurityPerimeterLink' + - 'Update-AzNetworkSecurityPerimeterLink' + - 'Remove-AzNetworkSecurityPerimeterLink' + - Cmdlets for NetworkSecurityPerimeter link reference operations + - 'Get-AzNetworkSecurityPerimeterLinkReference' + - 'Remove-AzNetworkSecurityPerimeterLinkReference' + - Cmdlets for NetworkSecurityPerimeter logging configuration operations + - 'New-AzNetworkSecurityPerimeterLoggingConfiguration' + - 'Get-AzNetworkSecurityPerimeterLoggingConfiguration' + - 'Update-AzNetworkSecurityPerimeterLoggingConfiguration' + - 'Remove-AzNetworkSecurityPerimeterLoggingConfiguration' + - Cmdlet to get NetworkSecurityPerimeter associable resource types + - 'Get-AzNetworkSecurityPerimeterAssociableResourceType' +* Updated cmdlet to add the property of 'PartnerManagedResource', and updated corresponding cmdlets. + - 'Get-AzNetworkVirtualAppliance' +* Added cmdlet to retrieve boot diagnostic logs for a given NetworkVirtualAppliance VM instance: + - 'Get-AzNetworkVirtualApplianceBootDiagnostics' +* Added etag property to Azure Virtual Network Manager -> IpamPool, VerifierWorkspace data models +* Onboarded ExpressRoute cmdlets to manage Microsoft Peering Advertised prefix validation: + - 'Get-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' + - 'Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' + - 'Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' + - 'Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig' +* Updated cmdlets to support Advanced Connectivity feature for Azure VPN gateway. + - 'New-AzVirtualNetworkGateway' + - 'Get-AzVirtualNetworkGateway' + - 'Get-AzVirtualNetworkGatewayConnection' +* Deleted NetworkWatcher cmdlets for 'Classic' Connection Monitor + - 'Start-AzNetworkWatcherConnectionMonitor' + - 'Get-AzNetworkWatcherConnectionMonitorReport' +* Updated cmdlets to support topology-specific connectivity capabilities: + - 'New-AzNetworkManagerConnectivityConfiguration' + - 'Set-AzNetworkManagerConnectivityConfiguration' + - 'Get-AzNetworkManagerConnectivityConfiguration' + +#### Az.NetworkFunction 0.2.0 +* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). + +#### Az.Oracle 1.1.1 +* Fixed module name in module metadata + +#### Az.PostgreSql 1.3.0 +* Added support for Geo-restore in 'Restore-AzPostgreSqlFlexibleServer' cmdlets. + - Automatically determined the paired region for the source server during geo-restore. + - Enhanced validation for private access and DNS zone configurations during restore operations. + +#### Az.RecoveryServices 7.7.2 +* Added fix for resume protection with AzureFileshare. +* Added fix for Get backup item for MSSQL soft deleted items. +* Added check to compare the VM resource group in the list of VMs returned for registration. +* Added RetainRecoveryPointsAsPerPolicy as MUA protected operation in Disable-AzRecoveryServicesBackupProtection cmdlet. + +#### Az.SelfHelp 0.3.0 +* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). + +#### Az.ServiceLinker 0.3.0 +* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). + +#### Az.StorageAction 0.1.2 +* Fixed module name in module metadata + +#### Az.StorageCache 0.2.0 +* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md). +* Removed all cmdlets related to the retired 'Storage Caches' resource. +* Updated 'New-AzStorageCacheAmlFileSystem': + - Removed '-IdentityType' parameter to support new Managed Identity settings. + - Renamed '-IdentityUserAssignedIdentity' to '-UserAssignedIdentity'. + - Added 'EnableSystemAssignedIdentity' to enable/disable system-assigned identities. + ## 14.0.0 - May 2025 #### Az.Accounts 5.0.0 * Changed the default output access token of 'Get-AzAccessToken' from plain text to 'SecureString'. diff --git a/tools/Docs/az-ps-latest-1.csv b/tools/Docs/az-ps-latest-1.csv index 653f2c6c8147..848adc46fab0 100644 --- a/tools/Docs/az-ps-latest-1.csv +++ b/tools/Docs/az-ps-latest-1.csv @@ -1,39 +1,39 @@ -pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.5.0.1.zip;sourceType=sa]Az.Accounts,5.0.1 +pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.5.0.2.zip;sourceType=sa]Az.Accounts,5.0.2 pac1,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ADDomainServices.0.3.0.zip;sourceType=sa]Az.ADDomainServices,0.3.0 pac2,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Advisor.2.1.0.zip;sourceType=sa]Az.Advisor,2.1.0 pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Aks.7.0.0.zip;sourceType=sa]Az.Aks,7.0.0 -pac4,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AksArc.0.1.3.zip;sourceType=sa]Az.AksArc,0.1.3 +pac4,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AksArc.0.1.4.zip;sourceType=sa]Az.AksArc,0.1.4 pac5,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Alb.0.1.4.zip;sourceType=sa]Az.Alb,0.1.4 pac6,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AlertsManagement.0.7.0.zip;sourceType=sa]Az.AlertsManagement,0.7.0 pac7,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AnalysisServices.1.2.0.zip;sourceType=sa]Az.AnalysisServices,1.2.0 pac8,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ApiManagement.4.1.0.zip;sourceType=sa]Az.ApiManagement,4.1.0 pac9,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.App.2.0.1.zip;sourceType=sa]Az.App,2.0.1 -pac10,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AppComplianceAutomation.0.1.3.zip;sourceType=sa]Az.AppComplianceAutomation,0.1.3 +pac10,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AppComplianceAutomation.0.1.4.zip;sourceType=sa]Az.AppComplianceAutomation,0.1.4 pac11,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AppConfiguration.2.0.0.zip;sourceType=sa]Az.AppConfiguration,2.0.0 pac12,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ApplicationInsights.2.3.0.zip;sourceType=sa]Az.ApplicationInsights,2.3.0 -pac13,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ArcGateway.0.1.1.zip;sourceType=sa]Az.ArcGateway,0.1.1 +pac13,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ArcGateway.0.1.2.zip;sourceType=sa]Az.ArcGateway,0.1.2 pac14,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ArcResourceBridge.1.1.0.zip;sourceType=sa]Az.ArcResourceBridge,1.1.0 pac15,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ArizeAI.0.1.0.zip;sourceType=sa]Az.ArizeAI,0.1.0 -pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Astro.0.1.2.zip;sourceType=sa]Az.Astro,0.1.2 +pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Astro.0.1.3.zip;sourceType=sa]Az.Astro,0.1.3 pac17,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Attestation.2.1.0.zip;sourceType=sa]Az.Attestation,2.1.0 pac18,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Automanage.1.1.0.zip;sourceType=sa]Az.Automanage,1.1.0 pac19,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Automation.1.11.1.zip;sourceType=sa]Az.Automation,1.11.1 pac20,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BareMetal.0.2.0.zip;sourceType=sa]Az.BareMetal,0.2.0 pac21,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Batch.3.7.0.zip;sourceType=sa]Az.Batch,3.7.0 pac22,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Billing.2.2.0.zip;sourceType=sa]Az.Billing,2.2.0 -pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BillingBenefits.0.2.0.zip;sourceType=sa]Az.BillingBenefits,0.2.0 +pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BillingBenefits.0.2.1.zip;sourceType=sa]Az.BillingBenefits,0.2.1 pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Blueprint.0.4.6.zip;sourceType=sa]Az.Blueprint,0.4.6 pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BotService.0.6.0.zip;sourceType=sa]Az.BotService,0.6.0 pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Carbon.0.1.0.zip;sourceType=sa]Az.Carbon,0.1.0 pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Cdn.5.0.0.zip;sourceType=sa]Az.Cdn,5.0.0 pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ChangeAnalysis.0.2.0.zip;sourceType=sa]Az.ChangeAnalysis,0.2.0 -pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Chaos.0.1.1.zip;sourceType=sa]Az.Chaos,0.1.1 +pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Chaos.0.1.2.zip;sourceType=sa]Az.Chaos,0.1.2 pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CloudService.2.1.0.zip;sourceType=sa]Az.CloudService,2.1.0 pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CognitiveServices.1.16.0.zip;sourceType=sa]Az.CognitiveServices,1.16.0 pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Communication.0.6.0.zip;sourceType=sa]Az.Communication,0.6.0 -pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.10.0.0.zip;sourceType=sa]Az.Compute,10.0.0 -pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ComputeFleet.0.1.0.zip;sourceType=sa]Az.ComputeFleet,0.1.0 -pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ComputeSchedule.0.1.0.zip;sourceType=sa]Az.ComputeSchedule,0.1.0 +pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.10.0.1.zip;sourceType=sa]Az.Compute,10.0.1 +pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ComputeFleet.0.1.1.zip;sourceType=sa]Az.ComputeFleet,0.1.1 +pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ComputeSchedule.0.1.1.zip;sourceType=sa]Az.ComputeSchedule,0.1.1 pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.1.0.zip;sourceType=sa]Az.ConfidentialLedger,1.1.0 pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Confluent.0.3.0.zip;sourceType=sa]Az.Confluent,0.3.0 pac38,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.15.0.zip;sourceType=sa]Az.ConnectedKubernetes,0.15.0 @@ -43,7 +43,7 @@ pac41,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac42,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerInstance.4.1.1.zip;sourceType=sa]Az.ContainerInstance,4.1.1 pac43,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerRegistry.4.3.0.zip;sourceType=sa]Az.ContainerRegistry,4.3.0 pac44,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CosmosDB.1.18.0.zip;sourceType=sa]Az.CosmosDB,1.18.0 -pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CostManagement.0.4.1.zip;sourceType=sa]Az.CostManagement,0.4.1 +pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CostManagement.0.4.2.zip;sourceType=sa]Az.CostManagement,0.4.2 pac46,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomLocation.0.2.1.zip;sourceType=sa]Az.CustomLocation,0.2.1 pac47,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomProviders.0.2.0.zip;sourceType=sa]Az.CustomProviders,0.2.0 pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Dashboard.0.2.0.zip;sourceType=sa]Az.Dashboard,0.2.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.DataBoxEdge.1.2.1.zip;sourceType=sa]Az.DataBoxEdge,1.2.1 pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Databricks.1.10.0.zip;sourceType=sa]Az.Databricks,1.10.0 pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Datadog.0.2.0.zip;sourceType=sa]Az.Datadog,0.2.0 -pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataFactory.1.19.2.zip;sourceType=sa]Az.DataFactory,1.19.2 +pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataFactory.1.19.3.zip;sourceType=sa]Az.DataFactory,1.19.3 pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataLakeAnalytics.1.1.0.zip;sourceType=sa]Az.DataLakeAnalytics,1.1.0 pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataLakeStore.1.4.0.zip;sourceType=sa]Az.DataLakeStore,1.4.0 pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataMigration.0.15.0.zip;sourceType=sa]Az.DataMigration,0.15.0 @@ -61,7 +61,7 @@ pac59,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac60,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DesktopVirtualization.5.4.1.zip;sourceType=sa]Az.DesktopVirtualization,5.4.1 pac61,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevCenter.2.0.1.zip;sourceType=sa]Az.DevCenter,2.0.1 pac62,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceProvisioningServices.0.10.4.zip;sourceType=sa]Az.DeviceProvisioningServices,0.10.4 -pac63,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceRegistry.0.1.0.zip;sourceType=sa]Az.DeviceRegistry,0.1.0 +pac63,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceRegistry.0.1.1.zip;sourceType=sa]Az.DeviceRegistry,0.1.1 pac64,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceUpdate.0.2.0.zip;sourceType=sa]Az.DeviceUpdate,0.2.0 pac65,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevTestLabs.1.1.0.zip;sourceType=sa]Az.DevTestLabs,1.1.0 pac66,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DigitalTwins.0.2.2.zip;sourceType=sa]Az.DigitalTwins,0.2.2 @@ -75,7 +75,7 @@ pac73,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac74,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ElasticSan.1.4.0.zip;sourceType=sa]Az.ElasticSan,1.4.0 pac75,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EventGrid.2.2.0.zip;sourceType=sa]Az.EventGrid,2.2.0 pac76,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.EventHub.5.3.0.zip;sourceType=sa]Az.EventHub,5.3.0 -pac77,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Fabric.0.1.1.zip;sourceType=sa]Az.Fabric,0.1.1 +pac77,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Fabric.0.1.2.zip;sourceType=sa]Az.Fabric,0.1.2 pac78,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.FirmwareAnalysis.0.1.4.zip;sourceType=sa]Az.FirmwareAnalysis,0.1.4 pac79,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Fleet.0.2.2.zip;sourceType=sa]Az.Fleet,0.2.2 pac80,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.FluidRelay.0.2.0.zip;sourceType=sa]Az.FluidRelay,0.2.0 @@ -92,13 +92,13 @@ pac90,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac91,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.HPCCache.0.1.3.zip;sourceType=sa]Az.HPCCache,0.1.3 pac92,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ImageBuilder.0.5.0.zip;sourceType=sa]Az.ImageBuilder,0.5.0 pac93,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ImportExport.0.3.0.zip;sourceType=sa]Az.ImportExport,0.3.0 -pac94,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Informatica.0.1.1.zip;sourceType=sa]Az.Informatica,0.1.1 +pac94,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Informatica.0.1.2.zip;sourceType=sa]Az.Informatica,0.1.2 pac95,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IotCentral.0.10.3.zip;sourceType=sa]Az.IotCentral,0.10.3 pac96,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IotHub.2.8.0.zip;sourceType=sa]Az.IotHub,2.8.0 pac97,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.IoTOperationsService.0.1.0.zip;sourceType=sa]Az.IoTOperationsService,0.1.0 pac98,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KeyVault.6.3.1.zip;sourceType=sa]Az.KeyVault,6.3.1 pac99,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KubernetesConfiguration.0.8.0.zip;sourceType=sa]Az.KubernetesConfiguration,0.8.0 -pac100,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KubernetesRuntime.0.1.1.zip;sourceType=sa]Az.KubernetesRuntime,0.1.1 +pac100,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.KubernetesRuntime.0.2.0.zip;sourceType=sa]Az.KubernetesRuntime,0.2.0 pac101,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Kusto.2.4.0.zip;sourceType=sa]Az.Kusto,2.4.0 pac102,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.LabServices.0.1.2.zip;sourceType=sa]Az.LabServices,0.1.2 pac103,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.LambdaTest.0.1.0.zip;sourceType=sa]Az.LambdaTest,0.1.0 @@ -115,8 +115,8 @@ pac113,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-rele pac114,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MariaDb.0.2.3.zip;sourceType=sa]Az.MariaDb,0.2.3 pac115,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Marketplace.0.5.2.zip;sourceType=sa]Az.Marketplace,0.5.2 pac116,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MarketplaceOrdering.2.2.0.zip;sourceType=sa]Az.MarketplaceOrdering,2.2.0 -pac117,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Mdp.0.1.1.zip;sourceType=sa]Az.Mdp,0.1.1 -pac118,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Migrate.2.7.1.zip;sourceType=sa]Az.Migrate,2.7.1 +pac117,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Mdp.0.1.2.zip;sourceType=sa]Az.Mdp,0.1.2 +pac118,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Migrate.2.8.0.zip;sourceType=sa]Az.Migrate,2.8.0 pac119,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MixedReality.0.3.0.zip;sourceType=sa]Az.MixedReality,0.3.0 -pac120,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MobileNetwork.0.4.2.zip;sourceType=sa]Az.MobileNetwork,0.4.2 +pac120,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MobileNetwork.0.5.0.zip;sourceType=sa]Az.MobileNetwork,0.5.0 diff --git a/tools/Docs/az-ps-latest-2.csv b/tools/Docs/az-ps-latest-2.csv index 995ea940966e..27c2a1b3b0e4 100644 --- a/tools/Docs/az-ps-latest-2.csv +++ b/tools/Docs/az-ps-latest-2.csv @@ -1,74 +1,75 @@ -pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.5.0.1.zip;sourceType=sa]Az.Accounts,5.0.1 -pac1,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Monitor.6.0.2.zip;sourceType=sa]Az.Monitor,6.0.2 -pac2,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MonitoringSolutions.0.2.0.zip;sourceType=sa]Az.MonitoringSolutions,0.2.0 -pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MySql.1.3.0.zip;sourceType=sa]Az.MySql,1.3.0 -pac4,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NeonPostgres.0.1.1.zip;sourceType=sa]Az.NeonPostgres,0.1.1 -pac5,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.23.0.zip;sourceType=sa]Az.NetAppFiles,0.23.0 -pac6,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.7.17.0.zip;sourceType=sa]Az.Network,7.17.0 -pac7,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkAnalytics.0.1.2.zip;sourceType=sa]Az.NetworkAnalytics,0.1.2 -pac8,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkCloud.1.1.0.zip;sourceType=sa]Az.NetworkCloud,1.1.0 -pac9,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkFunction.0.1.5.zip;sourceType=sa]Az.NetworkFunction,0.1.5 -pac10,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NewRelic.0.2.1.zip;sourceType=sa]Az.NewRelic,0.2.1 -pac11,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Nginx.1.2.0.zip;sourceType=sa]Az.Nginx,1.2.0 -pac12,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NotificationHubs.1.2.0.zip;sourceType=sa]Az.NotificationHubs,1.2.0 -pac13,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.OperationalInsights.3.3.0.zip;sourceType=sa]Az.OperationalInsights,3.3.0 -pac14,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Oracle.1.1.0.zip;sourceType=sa]Az.Oracle,1.1.0 -pac15,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Orbital.0.2.0.zip;sourceType=sa]Az.Orbital,0.2.0 -pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PaloAltoNetworks.0.3.1.zip;sourceType=sa]Az.PaloAltoNetworks,0.3.1 -pac17,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Peering.0.5.0.zip;sourceType=sa]Az.Peering,0.5.0 -pac18,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Pinecone.0.1.0.zip;sourceType=sa]Az.Pinecone,0.1.0 -pac19,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PolicyInsights.1.7.1.zip;sourceType=sa]Az.PolicyInsights,1.7.1 -pac20,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Portal.0.4.0.zip;sourceType=sa]Az.Portal,0.4.0 -pac21,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PostgreSql.1.2.0.zip;sourceType=sa]Az.PostgreSql,1.2.0 -pac22,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PowerBIEmbedded.2.1.0.zip;sourceType=sa]Az.PowerBIEmbedded,2.1.0 -pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PrivateDns.1.2.0.zip;sourceType=sa]Az.PrivateDns,1.2.0 -pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ProviderHub.0.3.1.zip;sourceType=sa]Az.ProviderHub,0.3.1 -pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Purview.0.2.2.zip;sourceType=sa]Az.Purview,0.2.2 -pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quantum.0.2.0.zip;sourceType=sa]Az.Quantum,0.2.0 -pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Qumulo.0.1.3.zip;sourceType=sa]Az.Qumulo,0.1.3 -pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quota.0.1.3.zip;sourceType=sa]Az.Quota,0.1.3 -pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RecoveryServices.7.7.1.zip;sourceType=sa]Az.RecoveryServices,7.7.1 -pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.11.0.zip;sourceType=sa]Az.RedisCache,1.11.0 -pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.5.0.zip;sourceType=sa]Az.RedisEnterpriseCache,1.5.0 -pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Relay.2.1.0.zip;sourceType=sa]Az.Relay,2.1.0 -pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.14.0.zip;sourceType=sa]Az.Reservations,0.14.0 -pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceGraph.1.2.1.zip;sourceType=sa]Az.ResourceGraph,1.2.1 -pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceMover.1.3.0.zip;sourceType=sa]Az.ResourceMover,1.3.0 -pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.8.0.0.zip;sourceType=sa]Az.Resources,8.0.0 -pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ScVmm.0.1.0.zip;sourceType=sa]Az.ScVmm,0.1.0 -pac38,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Search.0.10.1.zip;sourceType=sa]Az.Search,0.10.1 -pac39,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Security.1.8.0.zip;sourceType=sa]Az.Security,1.8.0 -pac40,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.2.0.zip;sourceType=sa]Az.SecurityInsights,3.2.0 -pac41,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SelfHelp.0.2.1.zip;sourceType=sa]Az.SelfHelp,0.2.1 -pac42,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceBus.4.1.1.zip;sourceType=sa]Az.ServiceBus,4.1.1 -pac43,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceFabric.3.5.0.zip;sourceType=sa]Az.ServiceFabric,3.5.0 -pac44,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceLinker.0.2.3.zip;sourceType=sa]Az.ServiceLinker,0.2.3 -pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SignalR.2.1.0.zip;sourceType=sa]Az.SignalR,2.1.0 -pac46,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sphere.0.1.3.zip;sourceType=sa]Az.Sphere,0.1.3 -pac47,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SpringCloud.0.4.0.zip;sourceType=sa]Az.SpringCloud,0.4.0 -pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.6.0.4.zip;sourceType=sa]Az.Sql,6.0.4 -pac49,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SqlVirtualMachine.2.4.0.zip;sourceType=sa]Az.SqlVirtualMachine,2.4.0 -pac50,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Ssh.0.2.3.zip;sourceType=sa]Az.Ssh,0.2.3 -pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.2.6.0.zip;sourceType=sa]Az.StackHCI,2.6.0 -pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCIVM.1.1.0.zip;sourceType=sa]Az.StackHCIVM,1.1.0 -pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StandbyPool.0.3.0.zip;sourceType=sa]Az.StandbyPool,0.3.0 -pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.9.0.0.zip;sourceType=sa]Az.Storage,9.0.0 -pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageAction.0.1.1.zip;sourceType=sa]Az.StorageAction,0.1.1 -pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageCache.0.1.2.zip;sourceType=sa]Az.StorageCache,0.1.2 -pac57,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageMover.1.5.0.zip;sourceType=sa]Az.StorageMover,1.5.0 -pac58,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageSync.2.5.0.zip;sourceType=sa]Az.StorageSync,2.5.0 -pac59,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StreamAnalytics.2.1.0.zip;sourceType=sa]Az.StreamAnalytics,2.1.0 -pac60,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Subscription.0.12.0.zip;sourceType=sa]Az.Subscription,0.12.0 -pac61,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Support.2.1.0.zip;sourceType=sa]Az.Support,2.1.0 -pac62,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Synapse.3.2.1.zip;sourceType=sa]Az.Synapse,3.2.1 -pac63,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Terraform.0.1.2.zip;sourceType=sa]Az.Terraform,0.1.2 -pac64,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TimeSeriesInsights.0.2.3.zip;sourceType=sa]Az.TimeSeriesInsights,0.2.3 -pac65,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrafficManager.1.3.0.zip;sourceType=sa]Az.TrafficManager,1.3.0 -pac66,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrustedSigning.0.1.1.zip;sourceType=sa]Az.TrustedSigning,0.1.1 -pac67,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VMware.0.7.2.zip;sourceType=sa]Az.VMware,0.7.2 -pac68,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VoiceServices.0.2.0.zip;sourceType=sa]Az.VoiceServices,0.2.0 -pac69,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Websites.3.4.1.zip;sourceType=sa]Az.Websites,3.4.1 -pac70,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WeightsAndBiases.0.1.0.zip;sourceType=sa]Az.WeightsAndBiases,0.1.0 -pac71,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WindowsIotServices.0.2.0.zip;sourceType=sa]Az.WindowsIotServices,0.2.0 -pac72,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Workloads.1.0.0.zip;sourceType=sa]Az.Workloads,1.0.0 +pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.5.0.2.zip;sourceType=sa]Az.Accounts,5.0.2 +pac1,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MongoDB.0.1.0.zip;sourceType=sa]Az.MongoDB,0.1.0 +pac2,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Monitor.6.0.2.zip;sourceType=sa]Az.Monitor,6.0.2 +pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MonitoringSolutions.0.2.0.zip;sourceType=sa]Az.MonitoringSolutions,0.2.0 +pac4,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MySql.1.4.0.zip;sourceType=sa]Az.MySql,1.4.0 +pac5,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NeonPostgres.0.1.1.zip;sourceType=sa]Az.NeonPostgres,0.1.1 +pac6,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.24.0.zip;sourceType=sa]Az.NetAppFiles,0.24.0 +pac7,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.7.17.0.zip;sourceType=sa]Az.Network,7.17.0 +pac8,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkAnalytics.0.1.2.zip;sourceType=sa]Az.NetworkAnalytics,0.1.2 +pac9,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkCloud.1.1.0.zip;sourceType=sa]Az.NetworkCloud,1.1.0 +pac10,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkFunction.0.2.0.zip;sourceType=sa]Az.NetworkFunction,0.2.0 +pac11,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NewRelic.0.2.1.zip;sourceType=sa]Az.NewRelic,0.2.1 +pac12,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Nginx.1.2.0.zip;sourceType=sa]Az.Nginx,1.2.0 +pac13,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NotificationHubs.1.2.0.zip;sourceType=sa]Az.NotificationHubs,1.2.0 +pac14,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.OperationalInsights.3.3.0.zip;sourceType=sa]Az.OperationalInsights,3.3.0 +pac15,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Oracle.1.1.1.zip;sourceType=sa]Az.Oracle,1.1.1 +pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Orbital.0.2.0.zip;sourceType=sa]Az.Orbital,0.2.0 +pac17,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PaloAltoNetworks.0.3.1.zip;sourceType=sa]Az.PaloAltoNetworks,0.3.1 +pac18,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Peering.0.5.0.zip;sourceType=sa]Az.Peering,0.5.0 +pac19,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Pinecone.0.1.0.zip;sourceType=sa]Az.Pinecone,0.1.0 +pac20,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PolicyInsights.1.7.1.zip;sourceType=sa]Az.PolicyInsights,1.7.1 +pac21,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Portal.0.4.0.zip;sourceType=sa]Az.Portal,0.4.0 +pac22,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PostgreSql.1.3.0.zip;sourceType=sa]Az.PostgreSql,1.3.0 +pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PowerBIEmbedded.2.1.0.zip;sourceType=sa]Az.PowerBIEmbedded,2.1.0 +pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.PrivateDns.1.2.0.zip;sourceType=sa]Az.PrivateDns,1.2.0 +pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ProviderHub.0.3.1.zip;sourceType=sa]Az.ProviderHub,0.3.1 +pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Purview.0.2.2.zip;sourceType=sa]Az.Purview,0.2.2 +pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quantum.0.2.0.zip;sourceType=sa]Az.Quantum,0.2.0 +pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Qumulo.0.1.3.zip;sourceType=sa]Az.Qumulo,0.1.3 +pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quota.0.1.3.zip;sourceType=sa]Az.Quota,0.1.3 +pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RecoveryServices.7.7.2.zip;sourceType=sa]Az.RecoveryServices,7.7.2 +pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.11.0.zip;sourceType=sa]Az.RedisCache,1.11.0 +pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.5.0.zip;sourceType=sa]Az.RedisEnterpriseCache,1.5.0 +pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Relay.2.1.0.zip;sourceType=sa]Az.Relay,2.1.0 +pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.14.0.zip;sourceType=sa]Az.Reservations,0.14.0 +pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceGraph.1.2.1.zip;sourceType=sa]Az.ResourceGraph,1.2.1 +pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceMover.1.3.0.zip;sourceType=sa]Az.ResourceMover,1.3.0 +pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.8.0.0.zip;sourceType=sa]Az.Resources,8.0.0 +pac38,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ScVmm.0.1.0.zip;sourceType=sa]Az.ScVmm,0.1.0 +pac39,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Search.0.10.1.zip;sourceType=sa]Az.Search,0.10.1 +pac40,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Security.1.8.0.zip;sourceType=sa]Az.Security,1.8.0 +pac41,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.2.0.zip;sourceType=sa]Az.SecurityInsights,3.2.0 +pac42,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SelfHelp.0.3.0.zip;sourceType=sa]Az.SelfHelp,0.3.0 +pac43,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceBus.4.1.1.zip;sourceType=sa]Az.ServiceBus,4.1.1 +pac44,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceFabric.3.5.0.zip;sourceType=sa]Az.ServiceFabric,3.5.0 +pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceLinker.0.3.0.zip;sourceType=sa]Az.ServiceLinker,0.3.0 +pac46,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SignalR.2.1.0.zip;sourceType=sa]Az.SignalR,2.1.0 +pac47,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sphere.0.1.3.zip;sourceType=sa]Az.Sphere,0.1.3 +pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SpringCloud.0.4.0.zip;sourceType=sa]Az.SpringCloud,0.4.0 +pac49,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.6.0.4.zip;sourceType=sa]Az.Sql,6.0.4 +pac50,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SqlVirtualMachine.2.4.0.zip;sourceType=sa]Az.SqlVirtualMachine,2.4.0 +pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Ssh.0.2.3.zip;sourceType=sa]Az.Ssh,0.2.3 +pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.2.6.0.zip;sourceType=sa]Az.StackHCI,2.6.0 +pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCIVM.1.1.0.zip;sourceType=sa]Az.StackHCIVM,1.1.0 +pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StandbyPool.0.3.0.zip;sourceType=sa]Az.StandbyPool,0.3.0 +pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.9.0.0.zip;sourceType=sa]Az.Storage,9.0.0 +pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageAction.0.1.2.zip;sourceType=sa]Az.StorageAction,0.1.2 +pac57,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageCache.0.2.0.zip;sourceType=sa]Az.StorageCache,0.2.0 +pac58,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageMover.1.5.0.zip;sourceType=sa]Az.StorageMover,1.5.0 +pac59,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageSync.2.5.0.zip;sourceType=sa]Az.StorageSync,2.5.0 +pac60,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StreamAnalytics.2.1.0.zip;sourceType=sa]Az.StreamAnalytics,2.1.0 +pac61,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Subscription.0.12.0.zip;sourceType=sa]Az.Subscription,0.12.0 +pac62,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Support.2.1.0.zip;sourceType=sa]Az.Support,2.1.0 +pac63,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Synapse.3.2.1.zip;sourceType=sa]Az.Synapse,3.2.1 +pac64,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Terraform.0.1.2.zip;sourceType=sa]Az.Terraform,0.1.2 +pac65,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TimeSeriesInsights.0.2.3.zip;sourceType=sa]Az.TimeSeriesInsights,0.2.3 +pac66,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrafficManager.1.3.0.zip;sourceType=sa]Az.TrafficManager,1.3.0 +pac67,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrustedSigning.0.1.1.zip;sourceType=sa]Az.TrustedSigning,0.1.1 +pac68,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VMware.0.7.2.zip;sourceType=sa]Az.VMware,0.7.2 +pac69,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VoiceServices.0.2.0.zip;sourceType=sa]Az.VoiceServices,0.2.0 +pac70,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Websites.3.4.1.zip;sourceType=sa]Az.Websites,3.4.1 +pac71,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WeightsAndBiases.0.1.0.zip;sourceType=sa]Az.WeightsAndBiases,0.1.0 +pac72,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WindowsIotServices.0.2.0.zip;sourceType=sa]Az.WindowsIotServices,0.2.0 +pac73,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Workloads.1.0.0.zip;sourceType=sa]Az.Workloads,1.0.0 diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json index d353448e82c3..ca9d21a0c639 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": "5.0.1", + "ModuleVersion": "5.0.2", "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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1035,7 +1035,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1353,7 +1353,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1447,7 +1447,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1511,7 +1511,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2268,7 +2268,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2345,7 +2345,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2456,7 +2456,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2548,7 +2548,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2642,7 +2642,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3003,7 +3003,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3149,7 +3149,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3379,7 +3379,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3594,7 +3594,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3854,7 +3854,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4084,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4341,7 +4341,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4576,7 +4576,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4848,7 +4848,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5082,7 +5082,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5157,7 +5157,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -5222,7 +5222,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5269,7 +5269,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5800,7 +5800,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5866,7 +5866,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5964,7 +5964,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6053,7 +6053,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6142,7 +6142,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6221,7 +6221,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6285,7 +6285,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6360,7 +6360,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -6425,7 +6425,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6472,7 +6472,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7022,7 +7022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSSecureAccessToken", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSSecureAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSSecureAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpiresOn": "System.DateTimeOffset", "Token": "System.Security.SecureString", @@ -7436,7 +7436,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope", "Value": "System.Object", @@ -8232,7 +8232,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -8297,7 +8297,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8344,7 +8344,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8415,7 +8415,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -9699,7 +9699,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9776,7 +9776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9855,7 +9855,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9919,7 +9919,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9990,7 +9990,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Int32", "Headers": "System.Net.Http.Headers.HttpResponseHeaders", @@ -11020,7 +11020,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProfileName": "System.String" }, @@ -11220,7 +11220,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11322,7 +11322,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11416,7 +11416,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11592,7 +11592,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11654,7 +11654,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11832,7 +11832,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11934,7 +11934,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12028,7 +12028,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12099,7 +12099,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorCategory": "System.Management.Automation.ErrorCategoryInfo", "ErrorDetails": "System.Management.Automation.ErrorDetails", @@ -12150,7 +12150,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InnerException": "System.Boolean", "Exception": "System.Exception", @@ -12214,7 +12214,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", "ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", @@ -12896,7 +12896,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12968,7 +12968,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13032,7 +13032,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13402,7 +13402,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13523,7 +13523,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13664,7 +13664,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13807,7 +13807,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13958,7 +13958,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14090,7 +14090,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14203,7 +14203,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14277,7 +14277,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -14344,7 +14344,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14421,7 +14421,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14500,7 +14500,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15006,7 +15006,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15226,7 +15226,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15809,7 +15809,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16127,7 +16127,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16329,7 +16329,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope", "Value": "System.Object", @@ -16525,7 +16525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Config.Models", "Name": "Microsoft.Azure.Commands.Common.Authentication.Config.Models.LoginExperienceConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Config.Models.LoginExperienceConfig, Microsoft.Azure.PowerShell.Authentication, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Config.Models.LoginExperienceConfig, Microsoft.Azure.PowerShell.Authentication, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -16764,7 +16764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Config.Models", "Name": "Microsoft.Azure.Commands.Common.Authentication.Config.Models.LoginExperienceConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Config.Models.LoginExperienceConfig, Microsoft.Azure.PowerShell.Authentication, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Config.Models.LoginExperienceConfig, Microsoft.Azure.PowerShell.Authentication, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17129,7 +17129,7 @@ "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings": { "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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Mode": "System.String", @@ -17421,7 +17421,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "Verb": "System.String", @@ -17498,7 +17498,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=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=5.0.1.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.AksArc.json b/tools/Tools.Common/SerializedCmdlets/Az.AksArc.json index 90af629814b6..10f4a03b046e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.AksArc.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.AksArc.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.AksArc", - "ModuleVersion": "0.1.3", + "ModuleVersion": "0.1.4", "Cmdlets": [ { "VerbName": "Get", @@ -68,7 +68,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -77,7 +77,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -86,7 +86,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -99,7 +99,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -108,7 +108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -137,7 +137,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -146,7 +146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -155,7 +155,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -170,7 +182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -185,7 +197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -200,7 +212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -219,7 +231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -234,7 +246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -281,7 +293,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -296,7 +308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -311,7 +323,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -360,7 +390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -369,7 +399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -378,7 +408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -387,7 +417,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -396,7 +426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -405,7 +435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -434,7 +464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -443,7 +473,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -452,7 +482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -461,7 +491,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -476,7 +518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -491,7 +533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -506,7 +548,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -521,7 +563,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -536,7 +578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -551,7 +593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -598,7 +640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -613,7 +655,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -628,7 +670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -643,7 +685,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -689,7 +749,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -698,7 +758,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -707,7 +767,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -716,7 +776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -745,7 +805,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -754,7 +814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -763,7 +823,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -778,7 +850,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -793,7 +865,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -808,7 +880,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -823,7 +895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -870,7 +942,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -885,7 +957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -900,7 +972,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -949,7 +1039,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -958,7 +1048,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -967,7 +1057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -976,7 +1066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -985,7 +1075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -994,7 +1084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1023,7 +1113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1032,7 +1122,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1041,7 +1131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1050,7 +1140,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1065,7 +1167,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1080,7 +1182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1095,7 +1197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1110,7 +1212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1125,7 +1227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1140,7 +1242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1187,7 +1289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1202,7 +1304,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1217,7 +1319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1232,7 +1334,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1278,7 +1398,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1287,7 +1407,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1296,7 +1416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1309,7 +1429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1318,7 +1438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1347,7 +1467,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1356,7 +1476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1365,7 +1485,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1380,7 +1512,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1395,7 +1527,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1410,7 +1542,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1429,7 +1561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1444,7 +1576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1491,7 +1623,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1506,7 +1638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1521,7 +1653,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1600,7 +1750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1609,7 +1759,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1618,7 +1768,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1631,7 +1781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1640,7 +1790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1669,7 +1819,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1678,7 +1828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1687,7 +1837,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1702,7 +1864,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1717,7 +1879,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1732,7 +1894,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1751,7 +1913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1766,7 +1928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1813,7 +1975,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1828,7 +1990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1843,7 +2005,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1903,7 +2083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1912,7 +2092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1921,7 +2101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1930,7 +2110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1957,7 +2137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1986,7 +2166,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1995,7 +2175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2004,7 +2184,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2019,7 +2211,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2034,7 +2226,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2049,7 +2241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2064,7 +2256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2111,7 +2303,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2126,7 +2318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2141,7 +2333,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2161,7 +2371,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2176,7 +2386,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2191,7 +2401,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2206,7 +2416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2221,7 +2431,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2268,7 +2478,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2283,7 +2493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2298,7 +2508,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2342,7 +2570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2357,7 +2585,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2372,7 +2600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2387,7 +2615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2434,7 +2662,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2449,7 +2677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2464,7 +2692,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2522,7 +2768,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2531,7 +2777,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2544,7 +2790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2575,7 +2821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2584,7 +2830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2613,7 +2859,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2622,7 +2868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2631,7 +2877,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2646,7 +2904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2661,7 +2919,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2680,7 +2938,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2699,7 +2957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2714,7 +2972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2761,7 +3019,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2776,7 +3034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2791,7 +3049,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2811,7 +3087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2826,7 +3102,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2846,7 +3122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2861,7 +3137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2908,7 +3184,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2923,7 +3199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2938,7 +3214,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2958,7 +3252,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2978,7 +3272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2993,7 +3287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3040,7 +3334,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3055,7 +3349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3070,7 +3364,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3118,7 +3430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3133,7 +3445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3180,7 +3492,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3195,7 +3507,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3210,7 +3522,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3234,7 +3564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3249,7 +3579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3296,7 +3626,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3311,7 +3641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3326,7 +3656,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3372,7 +3720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3381,7 +3729,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3390,7 +3738,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3403,7 +3751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3412,7 +3760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3441,7 +3789,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3450,7 +3798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3459,7 +3807,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3474,7 +3834,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3489,7 +3849,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3504,7 +3864,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3523,7 +3883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3538,7 +3898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3585,7 +3945,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3600,7 +3960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3615,7 +3975,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3694,7 +4072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3703,7 +4081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3712,7 +4090,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3721,7 +4099,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3730,7 +4108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3739,7 +4117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3768,7 +4146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3777,7 +4155,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3786,7 +4164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3795,7 +4173,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3810,7 +4200,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3825,7 +4215,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3840,7 +4230,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3855,7 +4245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3870,7 +4260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3917,7 +4307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3932,7 +4322,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3947,7 +4337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3962,7 +4352,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3982,7 +4390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3997,7 +4405,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4012,7 +4420,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4027,7 +4435,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4042,7 +4450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4057,7 +4465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4104,7 +4512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4119,7 +4527,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4134,7 +4542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4149,7 +4557,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4228,7 +4654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4237,7 +4663,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4246,7 +4672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4255,7 +4681,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4264,7 +4690,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4273,7 +4699,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4282,7 +4708,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4291,7 +4717,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4300,7 +4726,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4309,7 +4735,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4318,7 +4744,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4328,7 +4754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4337,7 +4763,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4346,7 +4772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4355,7 +4781,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4364,7 +4790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4373,7 +4799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4382,7 +4808,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4391,7 +4817,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4400,7 +4826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4409,7 +4835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4418,7 +4844,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4427,7 +4853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4436,7 +4862,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4445,7 +4871,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4455,7 +4881,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4464,7 +4890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4473,7 +4899,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4482,7 +4908,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4491,7 +4917,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4500,7 +4926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4509,7 +4935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4518,7 +4944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4527,7 +4953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4536,7 +4962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4545,7 +4971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4554,7 +4980,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4563,7 +4989,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4572,7 +4998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4581,7 +5007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4590,7 +5016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4599,7 +5025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4608,7 +5034,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4617,7 +5043,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4630,7 +5056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4639,7 +5065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4648,7 +5074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4677,7 +5103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4686,7 +5112,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4695,7 +5121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4704,7 +5130,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4719,7 +5157,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4734,7 +5172,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4749,7 +5187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4764,7 +5202,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4779,7 +5217,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4794,7 +5232,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4809,7 +5247,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4824,7 +5262,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4840,7 +5278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4855,7 +5293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4870,7 +5308,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4885,7 +5323,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4905,7 +5343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4920,7 +5358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4935,7 +5373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4982,7 +5420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4997,7 +5435,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5012,7 +5450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5027,7 +5465,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5047,7 +5503,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5062,7 +5518,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5077,7 +5533,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5092,7 +5548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5107,7 +5563,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5122,7 +5578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5137,7 +5593,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5152,7 +5608,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5167,7 +5623,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5182,7 +5638,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5197,7 +5653,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5212,7 +5668,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5228,7 +5684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5243,7 +5699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5258,7 +5714,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5273,7 +5729,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5293,7 +5749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5308,7 +5764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5323,7 +5779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5370,7 +5826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5385,7 +5841,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5400,7 +5856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5415,7 +5871,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5435,7 +5909,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5450,7 +5924,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5465,7 +5939,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5480,7 +5954,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5495,7 +5969,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5510,7 +5984,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5525,7 +5999,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5540,7 +6014,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5555,7 +6029,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5570,7 +6044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5585,7 +6059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5600,7 +6074,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5615,7 +6089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5630,7 +6104,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5645,7 +6119,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5660,7 +6134,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5675,7 +6149,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5690,7 +6164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5705,7 +6179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5720,7 +6194,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5735,7 +6209,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5750,7 +6224,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5765,7 +6239,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5780,7 +6254,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5795,7 +6269,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5810,7 +6284,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5825,7 +6299,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5840,7 +6314,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5855,7 +6329,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5870,7 +6344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5885,7 +6359,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5900,7 +6374,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5915,7 +6389,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5930,7 +6404,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5945,7 +6419,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5960,7 +6434,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5975,7 +6449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5990,7 +6464,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6006,7 +6480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6021,7 +6495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6036,7 +6510,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6051,7 +6525,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6071,7 +6545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6086,7 +6560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6101,7 +6575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6148,7 +6622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6163,7 +6637,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6178,7 +6652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6193,7 +6667,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6213,7 +6705,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6228,7 +6720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6243,7 +6735,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6258,7 +6750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6273,7 +6765,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6288,7 +6780,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6303,7 +6795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6318,7 +6810,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6333,7 +6825,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6349,7 +6841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6364,7 +6856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6379,7 +6871,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6394,7 +6886,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6414,7 +6906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6429,7 +6921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6444,7 +6936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6491,7 +6983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6506,7 +6998,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6521,7 +7013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6536,7 +7028,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6556,7 +7066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6571,7 +7081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6586,7 +7096,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6601,7 +7111,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6616,7 +7126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6631,7 +7141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6646,7 +7156,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6661,7 +7171,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6676,7 +7186,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6692,7 +7202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6707,7 +7217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6722,7 +7232,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6737,7 +7247,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6757,7 +7267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6772,7 +7282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6787,7 +7297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6834,7 +7344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6849,7 +7359,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6864,7 +7374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6879,7 +7389,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6939,7 +7467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6948,7 +7476,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6957,7 +7485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6966,7 +7494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6993,7 +7521,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7002,7 +7530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7011,7 +7539,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7020,7 +7548,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7029,7 +7557,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7038,7 +7566,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7047,7 +7575,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7057,7 +7585,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7066,7 +7594,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7075,7 +7603,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7084,7 +7612,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7093,7 +7621,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7102,7 +7630,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7111,7 +7639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7120,7 +7648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7149,7 +7677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7158,7 +7686,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7167,7 +7695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7176,7 +7704,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7191,7 +7731,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7206,7 +7746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7221,7 +7761,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7236,7 +7776,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7251,7 +7791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7266,7 +7806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7313,7 +7853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7328,7 +7868,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7343,7 +7883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7358,7 +7898,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7402,7 +7960,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7417,7 +7975,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7432,7 +7990,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7447,7 +8005,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7462,7 +8020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7477,7 +8035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7524,7 +8082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7539,7 +8097,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7554,7 +8112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7569,7 +8127,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7589,7 +8165,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7604,7 +8180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7619,7 +8195,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7634,7 +8210,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7649,7 +8225,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7664,7 +8240,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7679,7 +8255,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7695,7 +8271,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7710,7 +8286,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7725,7 +8301,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7740,7 +8316,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7755,7 +8331,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7770,7 +8346,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7785,7 +8361,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7800,7 +8376,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7815,7 +8391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7830,7 +8406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7877,7 +8453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7892,7 +8468,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7907,7 +8483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7922,7 +8498,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7942,7 +8536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7957,7 +8551,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7972,7 +8566,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7987,7 +8581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8002,7 +8596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8017,7 +8611,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8032,7 +8626,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8047,7 +8641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8062,7 +8656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8109,7 +8703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8124,7 +8718,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8139,7 +8733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8154,7 +8748,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8174,7 +8786,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8189,7 +8801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8204,7 +8816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8219,7 +8831,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8234,7 +8846,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8249,7 +8861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8264,7 +8876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8311,7 +8923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8326,7 +8938,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8341,7 +8953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8356,7 +8968,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8376,7 +9006,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8391,7 +9021,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8406,7 +9036,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8421,7 +9051,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8436,7 +9066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8451,7 +9081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8466,7 +9096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8513,7 +9143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8528,7 +9158,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8543,7 +9173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8558,7 +9188,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8616,7 +9264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8625,7 +9273,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8634,7 +9282,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8643,7 +9291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8652,7 +9300,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8661,7 +9309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8670,7 +9318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8679,7 +9327,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8688,7 +9336,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8697,7 +9345,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8706,7 +9354,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8719,7 +9367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8728,7 +9376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8737,7 +9385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8766,7 +9414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8775,7 +9423,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8784,7 +9432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8793,7 +9441,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8808,7 +9468,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8823,7 +9483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8838,7 +9498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8857,7 +9517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8872,7 +9532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8887,7 +9547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8934,7 +9594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8949,7 +9609,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8963,8 +9623,23 @@ "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8975,11 +9650,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8999,7 +9677,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9014,7 +9692,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9029,7 +9707,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9044,7 +9722,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9059,7 +9737,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9074,7 +9752,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9089,7 +9767,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9104,7 +9782,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9119,7 +9797,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9138,7 +9816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9153,7 +9831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9168,7 +9846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9215,7 +9893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9230,7 +9908,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9245,7 +9923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9260,7 +9938,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9280,7 +9976,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9295,7 +9991,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9310,7 +10006,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9325,7 +10021,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9344,7 +10040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9359,7 +10055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9374,7 +10070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9421,7 +10117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9436,7 +10132,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9451,7 +10147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9466,7 +10162,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9486,7 +10200,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9501,7 +10215,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9516,7 +10230,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9531,7 +10245,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9550,7 +10264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9565,7 +10279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9580,7 +10294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9627,7 +10341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9642,7 +10356,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9657,7 +10371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9672,7 +10386,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9699,7 +10431,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -9712,7 +10444,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9721,7 +10453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9730,7 +10462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9739,7 +10471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9748,7 +10480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9777,7 +10509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9786,7 +10518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9795,7 +10527,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9804,7 +10536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9813,7 +10545,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9828,7 +10572,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9843,7 +10587,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9858,7 +10602,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9873,7 +10617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9888,7 +10632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9935,7 +10679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9950,7 +10694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9965,7 +10709,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9980,7 +10724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9995,7 +10739,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10022,7 +10784,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -10035,7 +10797,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10044,7 +10806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10053,7 +10815,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10062,7 +10824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10089,7 +10851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10098,7 +10860,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10127,7 +10889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10136,7 +10898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10145,7 +10907,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10154,7 +10916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10163,7 +10925,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10178,7 +10952,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10193,7 +10967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10208,7 +10982,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10223,7 +10997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10238,7 +11012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10285,7 +11059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10300,7 +11074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10315,7 +11089,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10330,7 +11104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10345,7 +11119,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10365,7 +11157,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10380,7 +11172,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10395,7 +11187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10410,7 +11202,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10425,7 +11217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10440,7 +11232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10487,7 +11279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10502,7 +11294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10517,7 +11309,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10532,7 +11324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10547,7 +11339,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10591,7 +11401,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10606,7 +11416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10621,7 +11431,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10636,7 +11446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10651,7 +11461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10698,7 +11508,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10713,7 +11523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10728,7 +11538,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10743,7 +11553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10758,7 +11568,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10785,7 +11613,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -10801,7 +11629,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10810,7 +11638,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10819,7 +11647,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10850,7 +11678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10859,7 +11687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10868,7 +11696,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10897,7 +11725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10906,7 +11734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10915,7 +11743,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10924,7 +11752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10933,7 +11761,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10951,7 +11791,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10966,7 +11806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10981,7 +11821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11000,7 +11840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11015,7 +11855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11030,7 +11870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11077,7 +11917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11092,7 +11932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11107,7 +11947,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11122,7 +11962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11137,7 +11977,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11185,7 +12043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11200,7 +12058,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11215,7 +12073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11262,7 +12120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11277,7 +12135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11292,7 +12150,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11307,7 +12165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11322,7 +12180,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11346,7 +12222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11361,7 +12237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11376,7 +12252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11423,7 +12299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11438,7 +12314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11453,7 +12329,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11468,7 +12344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11483,7 +12359,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11562,7 +12456,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11571,7 +12465,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11580,7 +12474,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11589,7 +12483,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11598,7 +12492,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11607,7 +12501,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -11617,7 +12511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11626,7 +12520,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11635,7 +12529,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11644,7 +12538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11653,7 +12547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11662,7 +12556,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11671,7 +12565,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11680,7 +12574,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11689,7 +12583,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11698,7 +12592,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11707,7 +12601,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11716,7 +12610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11725,7 +12619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11734,7 +12628,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11743,7 +12637,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11752,7 +12646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11761,7 +12655,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11770,7 +12664,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11779,7 +12673,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11788,7 +12682,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11797,7 +12691,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11806,7 +12700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11815,7 +12709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11824,7 +12718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11853,7 +12747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11862,7 +12756,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11871,7 +12765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11880,7 +12774,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11895,7 +12801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11910,7 +12816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11925,7 +12831,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11940,7 +12846,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -11956,7 +12862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11971,7 +12877,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11986,7 +12892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12001,7 +12907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12016,7 +12922,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12031,7 +12937,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12046,7 +12952,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12061,7 +12967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12076,7 +12982,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12091,7 +12997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12106,7 +13012,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12121,7 +13027,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12136,7 +13042,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12151,7 +13057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12166,7 +13072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12181,7 +13087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12196,7 +13102,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12211,7 +13117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12226,7 +13132,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12241,7 +13147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12256,7 +13162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12271,7 +13177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12286,7 +13192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12333,7 +13239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12348,7 +13254,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12363,7 +13269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12378,7 +13284,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12398,7 +13322,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12413,7 +13337,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12428,7 +13352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12443,7 +13367,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12458,7 +13382,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12473,7 +13397,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12488,7 +13412,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12504,7 +13428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12519,7 +13443,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12534,7 +13458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12549,7 +13473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12564,7 +13488,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12579,7 +13503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12594,7 +13518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12609,7 +13533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12624,7 +13548,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12639,7 +13563,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12654,7 +13578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12669,7 +13593,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12684,7 +13608,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12699,7 +13623,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12714,7 +13638,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12729,7 +13653,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12744,7 +13668,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12759,7 +13683,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12774,7 +13698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12789,7 +13713,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12804,7 +13728,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12819,7 +13743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12834,7 +13758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12881,7 +13805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12896,7 +13820,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12911,7 +13835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12926,7 +13850,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12986,7 +13928,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12995,7 +13937,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13004,7 +13946,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13013,7 +13955,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13040,7 +13982,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13049,7 +13991,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13058,7 +14000,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13068,7 +14010,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13077,7 +14019,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13086,7 +14028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13095,7 +14037,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13104,7 +14046,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13113,7 +14055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13122,7 +14064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13151,7 +14093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13160,7 +14102,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13169,7 +14111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13178,7 +14120,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13193,7 +14147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13208,7 +14162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13223,7 +14177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13238,7 +14192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13253,7 +14207,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13268,7 +14222,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13283,7 +14237,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13299,7 +14253,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13314,7 +14268,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13329,7 +14283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13344,7 +14298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13391,7 +14345,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13406,7 +14360,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13421,7 +14375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13436,7 +14390,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13480,7 +14452,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13495,7 +14467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13510,7 +14482,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13525,7 +14497,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13540,7 +14512,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13555,7 +14527,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13570,7 +14542,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13586,7 +14558,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13601,7 +14573,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13616,7 +14588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13631,7 +14603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13678,7 +14650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13693,7 +14665,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13708,7 +14680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13723,7 +14695,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13743,7 +14733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13758,7 +14748,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13773,7 +14763,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13788,7 +14778,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13803,7 +14793,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13818,7 +14808,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13833,7 +14823,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13848,7 +14838,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13863,7 +14853,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13878,7 +14868,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13894,7 +14884,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13909,7 +14899,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13924,7 +14914,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13939,7 +14929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13986,7 +14976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14001,7 +14991,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14016,7 +15006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14031,7 +15021,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14091,7 +15099,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAddonStatusProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAddonStatusProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAddonStatusProfile, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAddonStatusProfile, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAddonStatusProfile" ] @@ -14110,7 +15118,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -14118,7 +15126,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ILinuxProfilePropertiesSshPublicKeysItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ILinuxProfilePropertiesSshPublicKeysItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ILinuxProfilePropertiesSshPublicKeysItem, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ILinuxProfilePropertiesSshPublicKeysItem, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ILinuxProfilePropertiesSshPublicKeysItem" ] @@ -14134,7 +15142,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.INamedAgentPoolProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.INamedAgentPoolProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.INamedAgentPoolProfile, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.INamedAgentPoolProfile, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.INamedAgentPoolProfile" ] @@ -14147,7 +15155,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -14155,7 +15163,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -14297,17 +15305,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -14315,38 +15323,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ICredentialResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ICredentialResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ICredentialResult, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ICredentialResult, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.ICredentialResult" ] @@ -14363,13 +15371,13 @@ "System.Byte[]": { "Namespace": "System", "Name": "System.Byte[]", - "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Byte" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IProvisionedClusterPoolUpgradeProfileProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IProvisionedClusterPoolUpgradeProfileProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IProvisionedClusterPoolUpgradeProfileProperties, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IProvisionedClusterPoolUpgradeProfileProperties, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IProvisionedClusterPoolUpgradeProfileProperties" ] @@ -14386,7 +15394,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IKubernetesVersionProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IKubernetesVersionProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IKubernetesVersionProperties, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IKubernetesVersionProperties, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IKubernetesVersionProperties" ] @@ -14419,7 +15427,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAgentPoolUpdateProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAgentPoolUpdateProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAgentPoolUpdateProfile, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAgentPoolUpdateProfile, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IAgentPoolUpdateProfile" ] @@ -14437,7 +15445,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVipPoolItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVipPoolItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVipPoolItem, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVipPoolItem, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVipPoolItem" ] @@ -14454,7 +15462,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVmipPoolItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVmipPoolItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVmipPoolItem, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVmipPoolItem, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVirtualNetworkPropertiesVmipPoolItem" ] @@ -14471,7 +15479,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuProperties, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuProperties, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuProperties" ] @@ -14491,7 +15499,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuCapabilities]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuCapabilities]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuCapabilities, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuCapabilities, Az.AksArc.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AksArc.Models.IVMSkuCapabilities" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.AppComplianceAutomation.json b/tools/Tools.Common/SerializedCmdlets/Az.AppComplianceAutomation.json index f979c24fb5cd..c13457194fcb 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.AppComplianceAutomation.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.AppComplianceAutomation.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.AppComplianceAutomation", - "ModuleVersion": "0.1.3", + "ModuleVersion": "0.1.4", "Cmdlets": [ { "VerbName": "Get", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory" }, "ParameterSets": [ @@ -30,7 +30,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -39,7 +39,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -52,7 +52,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -61,7 +61,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -70,7 +70,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -80,7 +80,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -90,7 +90,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -99,7 +99,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -108,7 +108,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -123,7 +135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -138,7 +150,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -157,7 +169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -172,7 +184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -187,7 +199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -203,7 +215,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -219,7 +231,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -234,7 +246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -249,7 +261,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -276,7 +306,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -312,7 +342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -321,7 +351,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -330,7 +360,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -342,7 +372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -355,7 +385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -364,7 +394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -373,7 +403,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -383,7 +413,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -393,7 +423,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -402,7 +432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -411,7 +441,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -426,7 +468,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -441,7 +483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -456,7 +498,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -475,7 +517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -490,7 +532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -505,7 +547,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -521,7 +563,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -537,7 +579,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -552,7 +594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -567,7 +609,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -590,7 +650,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -609,7 +669,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -624,7 +684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -639,7 +699,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -655,7 +715,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -671,7 +731,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -686,7 +746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -701,7 +761,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -725,7 +803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -740,7 +818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -755,7 +833,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -771,7 +849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -787,7 +865,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -802,7 +880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -817,7 +895,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -844,7 +940,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -872,7 +968,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -881,7 +977,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -890,7 +986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -899,7 +995,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -911,7 +1007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -924,7 +1020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -933,7 +1029,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -942,7 +1038,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -952,7 +1048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -962,7 +1058,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -971,7 +1067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -980,7 +1076,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -995,7 +1103,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1014,7 +1122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1029,7 +1137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1044,7 +1152,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1060,7 +1168,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1076,7 +1184,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1091,7 +1199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1106,7 +1214,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1126,7 +1252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1141,7 +1267,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1156,7 +1282,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1171,7 +1297,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1190,7 +1316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1205,7 +1331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1220,7 +1346,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1236,7 +1362,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1252,7 +1378,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1267,7 +1393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1282,7 +1408,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1305,7 +1449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1320,7 +1464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1339,7 +1483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1354,7 +1498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1369,7 +1513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1385,7 +1529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1401,7 +1545,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1416,7 +1560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1431,7 +1575,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1458,7 +1620,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -1474,7 +1636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1483,7 +1645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1492,7 +1654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1501,7 +1663,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1514,7 +1676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1523,7 +1685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1532,7 +1694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1541,7 +1703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1551,7 +1713,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1561,7 +1723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1570,7 +1732,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1579,7 +1741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1588,7 +1750,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1606,7 +1780,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1621,7 +1795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1636,7 +1810,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1651,7 +1825,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1670,7 +1844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1685,7 +1859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1700,7 +1874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1715,7 +1889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1731,7 +1905,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1747,7 +1921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1762,7 +1936,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1777,7 +1951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1792,7 +1966,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1819,7 +2011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -1858,7 +2050,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1867,7 +2059,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" }, "ValidateNotNullOrEmpty": false @@ -1877,7 +2069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1886,7 +2078,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1895,7 +2087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1904,7 +2096,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -1940,7 +2132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1949,7 +2141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1958,7 +2150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1967,7 +2159,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1977,7 +2169,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1987,7 +2179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1996,7 +2188,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2005,7 +2197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2014,7 +2206,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2032,7 +2236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2051,7 +2255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2066,7 +2270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2081,7 +2285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2096,7 +2300,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2112,7 +2316,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2128,7 +2332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2143,7 +2347,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2158,7 +2362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2173,7 +2377,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2193,7 +2415,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" }, "ValidateNotNullOrEmpty": false @@ -2209,7 +2431,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2224,7 +2446,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2239,7 +2461,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2257,7 +2479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2276,7 +2498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2291,7 +2513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2306,7 +2528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2321,7 +2543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2337,7 +2559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2353,7 +2575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2368,7 +2590,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2383,7 +2605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2398,7 +2620,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2418,7 +2658,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -2459,7 +2699,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2478,7 +2718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2493,7 +2733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2508,7 +2748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2523,7 +2763,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2539,7 +2779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2555,7 +2795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2570,7 +2810,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2585,7 +2825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2600,7 +2840,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2627,7 +2885,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -2663,7 +2921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" }, "ValidateNotNullOrEmpty": false @@ -2673,7 +2931,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2682,7 +2940,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2691,7 +2949,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2706,7 +2976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" }, "ValidateNotNullOrEmpty": false @@ -2722,7 +2992,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2737,7 +3007,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2752,7 +3022,25 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2779,7 +3067,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -2810,7 +3098,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2819,7 +3107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2828,7 +3116,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2837,7 +3125,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2846,7 +3134,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2855,7 +3143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2864,7 +3152,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2874,7 +3162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2883,7 +3171,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2892,7 +3180,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -2920,7 +3208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2929,7 +3217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2938,7 +3226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2948,7 +3236,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2958,7 +3246,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2967,7 +3255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2976,7 +3264,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2994,7 +3294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3009,7 +3309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3028,7 +3328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3043,7 +3343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3058,7 +3358,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3074,7 +3374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3090,7 +3390,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3105,7 +3405,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3120,7 +3420,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3140,7 +3458,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3155,7 +3473,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3170,7 +3488,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3185,7 +3503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3200,7 +3518,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3216,7 +3534,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3231,7 +3549,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3249,7 +3567,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3264,7 +3582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3283,7 +3601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3298,7 +3616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3313,7 +3631,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3329,7 +3647,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3345,7 +3663,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3360,7 +3678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3375,7 +3693,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3395,7 +3731,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -3428,7 +3764,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3443,7 +3779,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3462,7 +3798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3477,7 +3813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3492,7 +3828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3508,7 +3844,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3524,7 +3860,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3539,7 +3875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3554,7 +3890,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3581,7 +3935,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -3609,7 +3963,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3618,7 +3972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3627,7 +3981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3636,7 +3990,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3646,7 +4000,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3655,7 +4009,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3664,7 +4018,19 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3679,7 +4045,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3694,7 +4060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3709,7 +4075,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3724,7 +4090,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3740,7 +4106,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3755,7 +4121,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3770,7 +4136,25 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3797,7 +4181,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -3813,7 +4197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3826,7 +4210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3835,7 +4219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3844,7 +4228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3853,7 +4237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3863,7 +4247,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3873,7 +4257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3882,7 +4266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3891,7 +4275,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3900,7 +4284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3909,7 +4293,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3927,7 +4323,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3946,7 +4342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3961,7 +4357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3976,7 +4372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3991,7 +4387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4007,7 +4403,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4023,7 +4419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4038,7 +4434,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4053,7 +4449,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4068,7 +4464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4083,7 +4479,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4110,7 +4524,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -4126,7 +4540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4135,7 +4549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4148,7 +4562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4157,7 +4571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4166,7 +4580,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4176,7 +4590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4186,7 +4600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4195,7 +4609,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4204,7 +4618,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4213,7 +4627,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4231,7 +4657,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4246,7 +4672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4265,7 +4691,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4280,7 +4706,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4295,7 +4721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4311,7 +4737,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4327,7 +4753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4342,7 +4768,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4357,7 +4783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4372,7 +4798,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4399,7 +4843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ITriggerEvaluationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ITriggerEvaluationResponse, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ITriggerEvaluationResponse, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuickAssessment": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment]", "ResourceId": "System.Collections.Generic.List`1[System.String]", @@ -4418,7 +4862,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4432,7 +4876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4441,7 +4885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4450,7 +4894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4459,7 +4903,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4469,7 +4913,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4479,7 +4923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4488,7 +4932,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4497,7 +4941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4506,7 +4950,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4521,7 +4977,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4541,7 +4997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4556,7 +5012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4571,7 +5027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4586,7 +5042,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4602,7 +5058,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4618,7 +5074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4633,7 +5089,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4648,7 +5104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4663,7 +5119,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4690,7 +5164,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -4729,7 +5203,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4738,7 +5212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4747,7 +5221,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" }, "ValidateNotNullOrEmpty": false @@ -4757,7 +5231,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4766,7 +5240,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4775,7 +5249,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -4811,7 +5285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4820,7 +5294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4829,7 +5303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4838,7 +5312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4848,7 +5322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4858,7 +5332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4867,7 +5341,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4876,7 +5350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4885,7 +5359,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4903,7 +5389,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4922,7 +5408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4937,7 +5423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4952,7 +5438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4967,7 +5453,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4983,7 +5469,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4999,7 +5485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5014,7 +5500,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5029,7 +5515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5044,7 +5530,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5064,7 +5568,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5079,7 +5583,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" }, "ValidateNotNullOrEmpty": false @@ -5095,7 +5599,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5110,7 +5614,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5128,7 +5632,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5147,7 +5651,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5162,7 +5666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5177,7 +5681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5192,7 +5696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5208,7 +5712,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5224,7 +5728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5239,7 +5743,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5254,7 +5758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5269,7 +5773,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5289,7 +5811,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IReportResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertRecord": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", "Resource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", @@ -5330,7 +5852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5349,7 +5871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5364,7 +5886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5379,7 +5901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5394,7 +5916,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5410,7 +5932,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5426,7 +5948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5441,7 +5963,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5456,7 +5978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5471,7 +5993,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5498,7 +6038,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -5529,7 +6069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5538,7 +6078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5547,7 +6087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5556,7 +6096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5565,7 +6105,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5574,7 +6114,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5584,7 +6124,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5593,7 +6133,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5602,7 +6142,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5611,7 +6151,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -5639,7 +6179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5648,7 +6188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5657,7 +6197,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5667,7 +6207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5677,7 +6217,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5686,7 +6226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5695,7 +6235,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5713,7 +6265,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5728,7 +6280,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5747,7 +6299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5762,7 +6314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5777,7 +6329,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5793,7 +6345,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5809,7 +6361,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5824,7 +6376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5839,7 +6391,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5859,7 +6429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5874,7 +6444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5889,7 +6459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5904,7 +6474,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5920,7 +6490,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5935,7 +6505,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5950,7 +6520,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5968,7 +6538,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5983,7 +6553,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6002,7 +6572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6017,7 +6587,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6032,7 +6602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6048,7 +6618,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6064,7 +6634,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6079,7 +6649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6094,7 +6664,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6114,7 +6702,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IWebhookResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Event": "System.Collections.Generic.List`1[System.String]", "ContentType": "System.String", @@ -6147,7 +6735,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6162,7 +6750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6181,7 +6769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6196,7 +6784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6211,7 +6799,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6227,7 +6815,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep[], Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6243,7 +6831,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6258,7 +6846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6273,7 +6861,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6333,7 +6939,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICategory, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ControlFamily": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily]", "Name": "System.String", @@ -6343,7 +6949,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily" ] @@ -6351,7 +6957,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlFamily, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Control": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl]", "Name": "System.String", @@ -6361,7 +6967,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl" ] @@ -6369,7 +6975,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControl, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Responsibility": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility]", "Description": "System.String", @@ -6383,7 +6989,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility" ] @@ -6391,7 +6997,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibility, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendationList": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation]", "ResourceList": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource]", @@ -6412,7 +7018,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation" ] @@ -6420,7 +7026,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendation, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Solution": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution]", "ShortName": "System.String", @@ -6430,7 +7036,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution" ] @@ -6438,7 +7044,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IRecommendationSolution, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Content": "System.String", "Index": "System.String", @@ -6448,7 +7054,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource" ] @@ -6456,7 +7062,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResponsibilityResource, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendationId": "System.Collections.Generic.List`1[System.String]", "ResourceStatusChangeDate": "System.Nullable`1[System.DateTime]", @@ -6470,7 +7076,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -6478,7 +7084,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -6486,12 +7092,12 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -6499,7 +7105,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Runtime.SendAsyncStep, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -6633,17 +7239,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -6651,38 +7257,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord" ] @@ -6690,7 +7296,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.ICertSyncRecord, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Control": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord]", "CertificationStatus": "System.String", @@ -6701,7 +7307,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord" ] @@ -6709,7 +7315,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IControlSyncRecord, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ControlId": "System.String", "ControlStatus": "System.String" @@ -6718,7 +7324,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata" ] @@ -6726,7 +7332,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IResourceMetadata, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "ResourceId": "System.String", @@ -6738,7 +7344,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment" ] @@ -6746,7 +7352,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment, Az.AppComplianceAutomation.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.AppComplianceAutomation.Models.IQuickAssessment, Az.AppComplianceAutomation.private, Version=0.1.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Timestamp": "System.Nullable`1[System.DateTime]", "Description": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ArcGateway.json b/tools/Tools.Common/SerializedCmdlets/Az.ArcGateway.json index b1c546b482ac..f614f3ee530f 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.ArcGateway.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.ArcGateway.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.ArcGateway", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.1.2", "Cmdlets": [ { "VerbName": "Get", @@ -39,7 +39,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -48,7 +48,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -57,7 +57,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -107,7 +107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -116,7 +116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -145,7 +145,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -154,7 +154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -163,7 +163,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -181,7 +193,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -196,7 +208,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -211,7 +223,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -231,7 +243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -246,7 +258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -293,7 +305,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -308,7 +320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -323,7 +335,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -343,7 +373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -358,7 +388,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -378,7 +408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -393,7 +423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -440,7 +470,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -455,7 +485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -470,7 +500,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -490,7 +538,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -510,7 +558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -525,7 +573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -572,7 +620,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -587,7 +635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -602,7 +650,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -668,7 +734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -683,7 +749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -730,7 +796,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -745,7 +811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -760,7 +826,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -784,7 +868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -799,7 +883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -846,7 +930,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -861,7 +945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -876,7 +960,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -926,7 +1028,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -935,7 +1037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -944,7 +1046,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -989,7 +1091,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -998,7 +1100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1007,7 +1109,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1016,7 +1118,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1025,7 +1127,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1054,7 +1156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1063,7 +1165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1072,7 +1174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1101,7 +1203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1110,7 +1212,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1119,7 +1221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1128,7 +1230,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1146,7 +1260,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1161,7 +1275,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1176,7 +1290,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1217,7 +1331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1232,7 +1346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1247,7 +1361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1294,7 +1408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1309,7 +1423,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1324,7 +1438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1339,7 +1453,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1362,7 +1494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1377,7 +1509,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1392,7 +1524,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1407,7 +1539,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1426,7 +1558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1441,7 +1573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1456,7 +1588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1503,7 +1635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1518,7 +1650,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1533,7 +1665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1548,7 +1680,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1571,7 +1721,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1586,7 +1736,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1601,7 +1751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1616,7 +1766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1635,7 +1785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1650,7 +1800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1665,7 +1815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1712,7 +1862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1727,7 +1877,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1742,7 +1892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1757,7 +1907,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1780,7 +1948,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1795,7 +1963,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1810,7 +1978,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1825,7 +1993,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1840,7 +2008,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1855,7 +2023,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1874,7 +2042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1889,7 +2057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1904,7 +2072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1951,7 +2119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1966,7 +2134,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1981,7 +2149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1996,7 +2164,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2084,7 +2270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2099,7 +2285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2114,7 +2300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2161,7 +2347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2176,7 +2362,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2191,7 +2377,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2206,7 +2392,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2268,7 +2472,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2283,7 +2487,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2298,7 +2502,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2317,7 +2521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2332,7 +2536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2347,7 +2551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2394,7 +2598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2409,7 +2613,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2424,7 +2628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2439,7 +2643,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2463,7 +2685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2478,7 +2700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2493,7 +2715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2540,7 +2762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2555,7 +2777,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2570,7 +2792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2585,7 +2807,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2612,7 +2852,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -2628,7 +2868,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2637,7 +2877,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2646,7 +2886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2695,7 +2935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2704,7 +2944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2713,7 +2953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2742,7 +2982,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2751,7 +2991,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2760,7 +3000,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2769,7 +3009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2778,7 +3018,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2796,7 +3048,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2811,7 +3063,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2826,7 +3078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2845,7 +3097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2860,7 +3112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2875,7 +3127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2922,7 +3174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2937,7 +3189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2952,7 +3204,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2967,7 +3219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2982,7 +3234,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3048,7 +3318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3063,7 +3333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3078,7 +3348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3125,7 +3395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3140,7 +3410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3155,7 +3425,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3170,7 +3440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3185,7 +3455,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3209,7 +3497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3224,7 +3512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3239,7 +3527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3286,7 +3574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3301,7 +3589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3316,7 +3604,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3331,7 +3619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3346,7 +3634,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3390,7 +3696,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3399,7 +3705,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3408,7 +3714,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3417,7 +3723,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3426,7 +3732,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3471,7 +3777,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3480,7 +3786,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3489,7 +3795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3515,7 +3821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3524,7 +3830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3553,7 +3859,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3562,7 +3868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3571,7 +3877,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3586,7 +3904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3601,7 +3919,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3616,7 +3934,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3631,7 +3949,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3646,7 +3964,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3684,7 +4002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3699,7 +4017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3746,7 +4064,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3761,7 +4079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3776,7 +4094,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3796,7 +4132,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3811,7 +4147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3826,7 +4162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3841,7 +4177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3856,7 +4192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3871,7 +4207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3890,7 +4226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3905,7 +4241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3952,7 +4288,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3967,7 +4303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3982,7 +4318,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4002,7 +4356,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4017,7 +4371,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4032,7 +4386,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4047,7 +4401,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4062,7 +4416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4077,7 +4431,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4096,7 +4450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4111,7 +4465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4158,7 +4512,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4173,7 +4527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4188,7 +4542,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4208,7 +4580,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4223,7 +4595,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4238,7 +4610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4253,7 +4625,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4268,7 +4640,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4283,7 +4655,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4302,7 +4674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4317,7 +4689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4364,7 +4736,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4379,7 +4751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4394,7 +4766,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4479,7 +4869,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4494,7 +4884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4541,7 +4931,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4556,7 +4946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4571,7 +4961,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4633,7 +5041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4652,7 +5060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4667,7 +5075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4714,7 +5122,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4729,7 +5137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4744,7 +5152,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4768,7 +5194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4783,7 +5209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4830,7 +5256,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4845,7 +5271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4860,7 +5286,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4920,7 +5364,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -5062,17 +5506,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -5080,33 +5524,33 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" } } } \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Astro.json b/tools/Tools.Common/SerializedCmdlets/Az.Astro.json index 491408097db0..cc8ce8f2349d 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Astro.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Astro.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Astro", - "ModuleVersion": "0.1.2", + "ModuleVersion": "0.1.3", "Cmdlets": [ { "VerbName": "Get", @@ -61,7 +61,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -70,7 +70,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -79,7 +79,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -108,7 +108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -117,7 +117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -146,7 +146,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -155,7 +155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -164,7 +164,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -182,7 +194,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -197,7 +209,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -212,7 +224,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -232,7 +244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -247,7 +259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -294,7 +306,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -309,7 +321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -324,7 +336,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -344,7 +374,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -359,7 +389,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -379,7 +409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -394,7 +424,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -441,7 +471,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -456,7 +486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -471,7 +501,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -491,7 +539,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -511,7 +559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -526,7 +574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -573,7 +621,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -588,7 +636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -603,7 +651,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -648,7 +714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -663,7 +729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -710,7 +776,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -725,7 +791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -740,7 +806,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -764,7 +848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -779,7 +863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -826,7 +910,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -841,7 +925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -856,7 +940,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -928,7 +1030,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -937,7 +1039,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -946,7 +1048,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -955,7 +1057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -964,7 +1066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -973,7 +1075,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -982,7 +1084,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -991,7 +1093,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1000,7 +1102,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1009,7 +1111,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1018,7 +1120,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1027,7 +1129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1036,7 +1138,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1045,7 +1147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1054,7 +1156,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1063,7 +1165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1072,7 +1174,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1081,7 +1183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1090,7 +1192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1099,7 +1201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1108,7 +1210,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1118,7 +1220,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1127,7 +1229,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1136,7 +1238,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1145,7 +1247,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1154,7 +1256,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1164,7 +1266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1173,7 +1275,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1182,7 +1284,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1191,7 +1293,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1204,7 +1306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1213,7 +1315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1222,7 +1324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1251,7 +1353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1260,7 +1362,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1269,7 +1371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1278,7 +1380,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1296,7 +1410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1311,7 +1425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1326,7 +1440,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1345,7 +1459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1360,7 +1474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1375,7 +1489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1422,7 +1536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1437,7 +1551,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1452,7 +1566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1467,7 +1581,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1487,7 +1619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1502,7 +1634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1517,7 +1649,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1532,7 +1664,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1547,7 +1679,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1562,7 +1694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1577,7 +1709,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1592,7 +1724,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1607,7 +1739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1622,7 +1754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1637,7 +1769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1652,7 +1784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1667,7 +1799,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1682,7 +1814,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1697,7 +1829,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1712,7 +1844,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1727,7 +1859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1742,7 +1874,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1758,7 +1890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1773,7 +1905,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1788,7 +1920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1803,7 +1935,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1818,7 +1950,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1834,7 +1966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1849,7 +1981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1867,7 +1999,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1882,7 +2014,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1897,7 +2029,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1916,7 +2048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1931,7 +2063,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1946,7 +2078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1993,7 +2125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2008,7 +2140,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2023,7 +2155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2038,7 +2170,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2058,7 +2208,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2076,7 +2226,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2091,7 +2241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2106,7 +2256,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2125,7 +2275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2140,7 +2290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2155,7 +2305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2202,7 +2352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2217,7 +2367,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2232,7 +2382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2247,7 +2397,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2267,7 +2435,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2285,7 +2453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2300,7 +2468,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2315,7 +2483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2334,7 +2502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2349,7 +2517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2364,7 +2532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2411,7 +2579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2426,7 +2594,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2441,7 +2609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2456,7 +2624,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2483,7 +2669,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -2499,7 +2685,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2508,7 +2694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2517,7 +2703,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2545,7 +2731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2554,7 +2740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2563,7 +2749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2592,7 +2778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2601,7 +2787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2610,7 +2796,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2619,7 +2805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2628,7 +2814,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2646,7 +2844,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2661,7 +2859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2676,7 +2874,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2695,7 +2893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2710,7 +2908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2725,7 +2923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2772,7 +2970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2787,7 +2985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2802,7 +3000,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2817,7 +3015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2832,7 +3030,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2877,7 +3093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2892,7 +3108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2907,7 +3123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2954,7 +3170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2969,7 +3185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2984,7 +3200,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2999,7 +3215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3014,7 +3230,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3038,7 +3272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3053,7 +3287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3068,7 +3302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3115,7 +3349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3130,7 +3364,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3145,7 +3379,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3160,7 +3394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3175,7 +3409,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3247,7 +3499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3256,7 +3508,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3265,7 +3517,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3289,7 +3541,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -3301,7 +3553,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3310,7 +3562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3319,7 +3571,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3328,7 +3580,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3337,7 +3589,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3347,7 +3599,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3356,7 +3608,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3365,7 +3617,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3374,7 +3626,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3383,7 +3635,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3393,7 +3645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3402,7 +3654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3411,7 +3663,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3420,7 +3672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3429,7 +3681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3438,7 +3690,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3447,7 +3699,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3460,7 +3712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3469,7 +3721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3478,7 +3730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3507,7 +3759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3516,7 +3768,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3525,7 +3777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3534,7 +3786,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3552,7 +3816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3567,7 +3831,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3582,7 +3846,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3597,7 +3861,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3616,7 +3880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3631,7 +3895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3646,7 +3910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3693,7 +3957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3708,7 +3972,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3723,7 +3987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3738,7 +4002,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3761,7 +4043,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3776,7 +4058,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3791,7 +4073,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3806,7 +4088,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3825,7 +4107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3840,7 +4122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3855,7 +4137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3902,7 +4184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3917,7 +4199,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3932,7 +4214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3947,7 +4229,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3970,7 +4270,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3985,7 +4285,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4000,7 +4300,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4015,7 +4315,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -4033,7 +4333,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4048,7 +4348,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4063,7 +4363,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4078,7 +4378,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4093,7 +4393,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4109,7 +4409,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4124,7 +4424,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4139,7 +4439,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4154,7 +4454,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4169,7 +4469,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4185,7 +4485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4200,7 +4500,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4215,7 +4515,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4230,7 +4530,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4245,7 +4545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4264,7 +4564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4279,7 +4579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4294,7 +4594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4341,7 +4641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4356,7 +4656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4371,7 +4671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4386,7 +4686,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4427,7 +4745,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -4445,7 +4763,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4460,7 +4778,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4475,7 +4793,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4490,7 +4808,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4505,7 +4823,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4521,7 +4839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4536,7 +4854,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4551,7 +4869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4566,7 +4884,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4581,7 +4899,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4597,7 +4915,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4612,7 +4930,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4627,7 +4945,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4642,7 +4960,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4657,7 +4975,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4676,7 +4994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4691,7 +5009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4706,7 +5024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4753,7 +5071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4768,7 +5086,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4783,7 +5101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4798,7 +5116,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4822,7 +5158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4837,7 +5173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4852,7 +5188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4899,7 +5235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4914,7 +5250,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4929,7 +5265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4944,7 +5280,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5009,7 +5363,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -5151,17 +5505,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -5169,33 +5523,33 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" } } } \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Az.BillingBenefits.json b/tools/Tools.Common/SerializedCmdlets/Az.BillingBenefits.json index 86e7b06f9832..e33f80cd3846 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.BillingBenefits.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.BillingBenefits.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.BillingBenefits", - "ModuleVersion": "0.2.0", + "ModuleVersion": "0.2.1", "Cmdlets": [ { "VerbName": "Get", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Chaos.json b/tools/Tools.Common/SerializedCmdlets/Az.Chaos.json index 62d93842a1f9..70a39d1ec3ee 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Chaos.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Chaos.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Chaos", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.1.2", "Cmdlets": [ { "VerbName": "Get", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", @@ -45,7 +45,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -54,7 +54,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -63,7 +63,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -72,7 +72,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -81,7 +81,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -90,7 +90,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -100,7 +100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -109,7 +109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -135,7 +135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -161,7 +161,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -174,7 +174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -183,7 +183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -192,7 +192,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -202,7 +202,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -212,7 +212,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -221,7 +221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -230,7 +230,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -248,7 +260,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -263,7 +275,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -299,7 +311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -314,7 +326,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -329,7 +341,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -345,7 +357,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -361,7 +373,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -376,7 +388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -391,7 +403,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -414,7 +444,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -429,7 +459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -444,7 +474,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -459,7 +489,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -474,7 +504,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -489,7 +519,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -505,7 +535,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -524,7 +554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -539,7 +569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -554,7 +584,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -570,7 +600,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -586,7 +616,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -601,7 +631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -616,7 +646,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -636,7 +684,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -651,7 +699,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -666,7 +714,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -681,7 +729,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -696,7 +744,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -712,7 +760,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -727,7 +775,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -746,7 +794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -761,7 +809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -776,7 +824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -792,7 +840,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -808,7 +856,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -823,7 +871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -838,7 +886,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -858,7 +924,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -894,7 +960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -909,7 +975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -924,7 +990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -940,7 +1006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -956,7 +1022,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -971,7 +1037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -986,7 +1052,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1010,7 +1094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1025,7 +1109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1040,7 +1124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1056,7 +1140,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1072,7 +1156,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1087,7 +1171,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1102,7 +1186,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1129,7 +1231,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapabilityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapabilityType, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapabilityType, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureRbacAction": "System.Collections.Generic.List`1[System.String]", "AzureRbacDataAction": "System.Collections.Generic.List`1[System.String]", @@ -1161,7 +1263,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1173,7 +1275,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1182,7 +1284,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1192,7 +1294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1201,7 +1303,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -1227,7 +1329,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -1253,7 +1355,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -1279,7 +1381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1292,7 +1394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1301,7 +1403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1310,7 +1412,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1320,7 +1422,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1330,7 +1432,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1339,7 +1441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1348,7 +1450,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1363,7 +1477,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1378,7 +1492,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1394,7 +1508,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1409,7 +1523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1428,7 +1542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1443,7 +1557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1458,7 +1572,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1474,7 +1588,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1490,7 +1604,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1505,7 +1619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1520,7 +1634,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1540,7 +1672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1558,7 +1690,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1573,7 +1705,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1589,7 +1721,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1608,7 +1740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1623,7 +1755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1638,7 +1770,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1654,7 +1786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1670,7 +1802,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1685,7 +1817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1700,7 +1832,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1723,7 +1873,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1738,7 +1888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -1774,7 +1924,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1789,7 +1939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1804,7 +1954,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1820,7 +1970,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1836,7 +1986,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1851,7 +2001,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1866,7 +2016,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1889,7 +2057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1904,7 +2072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1919,7 +2087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -1955,7 +2123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1970,7 +2138,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1985,7 +2153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2001,7 +2169,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2017,7 +2185,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2032,7 +2200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2047,7 +2215,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2067,7 +2253,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -2103,7 +2289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2118,7 +2304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2133,7 +2319,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2149,7 +2335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2165,7 +2351,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2180,7 +2366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2195,7 +2381,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2219,7 +2423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2234,7 +2438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2249,7 +2453,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2265,7 +2469,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2281,7 +2485,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2296,7 +2500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2311,7 +2515,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2338,7 +2560,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionDetails, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionDetails, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RunInformationStep": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus]", "LastActionAt": "System.Nullable`1[System.DateTime]", @@ -2362,7 +2584,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2371,7 +2593,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2380,7 +2602,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2389,7 +2611,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2399,7 +2621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -2425,7 +2647,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -2455,7 +2677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2464,7 +2686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2473,7 +2695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2483,7 +2705,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2493,7 +2715,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2502,7 +2724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2511,7 +2733,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2526,7 +2760,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2541,7 +2775,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -2577,7 +2811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2592,7 +2826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2607,7 +2841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2623,7 +2857,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2639,7 +2873,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2654,7 +2888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2669,7 +2903,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2689,7 +2941,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2704,7 +2956,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2719,7 +2971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2734,7 +2986,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2754,7 +3006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2769,7 +3021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2784,7 +3036,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2800,7 +3052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2816,7 +3068,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2831,7 +3083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2846,7 +3098,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2866,7 +3136,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -2902,7 +3172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2917,7 +3187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2932,7 +3202,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2948,7 +3218,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2964,7 +3234,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2979,7 +3249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2994,7 +3264,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3018,7 +3306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3033,7 +3321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3048,7 +3336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3064,7 +3352,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3080,7 +3368,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3095,7 +3383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3110,7 +3398,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3137,7 +3443,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities", "Selector": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]", @@ -3168,7 +3474,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3177,7 +3483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3186,7 +3492,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3196,7 +3502,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -3222,7 +3528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3231,7 +3537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3244,7 +3550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3253,7 +3559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3262,7 +3568,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3272,7 +3578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3282,7 +3588,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3291,7 +3597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3300,7 +3606,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3318,7 +3636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3333,7 +3651,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3348,7 +3666,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3368,7 +3686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3383,7 +3701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3398,7 +3716,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3414,7 +3732,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3430,7 +3748,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3445,7 +3763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3460,7 +3778,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3480,7 +3816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3495,7 +3831,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3511,7 +3847,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3526,7 +3862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3545,7 +3881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3560,7 +3896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3575,7 +3911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3591,7 +3927,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3607,7 +3943,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3622,7 +3958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3637,7 +3973,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3657,7 +4011,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3673,7 +4027,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3688,7 +4042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3707,7 +4061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3722,7 +4076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3737,7 +4091,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3753,7 +4107,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3769,7 +4123,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3784,7 +4138,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3799,7 +4153,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3819,7 +4191,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -3855,7 +4227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3870,7 +4242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3885,7 +4257,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3901,7 +4273,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3917,7 +4289,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3932,7 +4304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3947,7 +4319,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3971,7 +4361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3986,7 +4376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4001,7 +4391,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4017,7 +4407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4033,7 +4423,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4048,7 +4438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4063,7 +4453,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4090,7 +4498,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecution", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecution, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecution, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartedAt": "System.Nullable`1[System.DateTime]", "StoppedAt": "System.Nullable`1[System.DateTime]", @@ -4111,7 +4519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4120,7 +4528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4129,7 +4537,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4138,7 +4546,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4148,7 +4556,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -4174,7 +4582,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -4204,7 +4612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4213,7 +4621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4222,7 +4630,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4232,7 +4640,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4242,7 +4650,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4251,7 +4659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4260,7 +4668,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4275,7 +4695,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4290,7 +4710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -4326,7 +4746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4341,7 +4761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4356,7 +4776,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4372,7 +4792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4388,7 +4808,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4403,7 +4823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4418,7 +4838,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4438,7 +4876,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4453,7 +4891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4468,7 +4906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4483,7 +4921,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4503,7 +4941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4518,7 +4956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4533,7 +4971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4549,7 +4987,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4565,7 +5003,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4580,7 +5018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4595,7 +5033,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4615,7 +5071,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4630,7 +5086,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4645,7 +5101,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4665,7 +5121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4680,7 +5136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4695,7 +5151,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4711,7 +5167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4727,7 +5183,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4742,7 +5198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4757,7 +5213,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4777,7 +5251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -4813,7 +5287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4828,7 +5302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4843,7 +5317,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4859,7 +5333,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4875,7 +5349,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4890,7 +5364,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4905,7 +5379,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4929,7 +5421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4944,7 +5436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4959,7 +5451,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4975,7 +5467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4991,7 +5483,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5006,7 +5498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5021,7 +5513,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5048,7 +5558,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", @@ -5074,7 +5584,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5083,7 +5593,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5092,7 +5602,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5101,7 +5611,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5110,7 +5620,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5119,7 +5629,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5129,7 +5639,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -5155,7 +5665,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5168,7 +5678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5177,7 +5687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5186,7 +5696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5196,7 +5706,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5206,7 +5716,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5215,7 +5725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5224,7 +5734,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5242,7 +5764,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5257,7 +5779,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5272,7 +5794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5287,7 +5809,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5302,7 +5824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5317,7 +5839,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5337,7 +5859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5352,7 +5874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5367,7 +5889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5383,7 +5905,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5399,7 +5921,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5414,7 +5936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5429,7 +5951,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5449,7 +5989,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5464,7 +6004,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5479,7 +6019,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5494,7 +6034,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5509,7 +6049,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5525,7 +6065,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5544,7 +6084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5559,7 +6099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5574,7 +6114,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5590,7 +6130,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5606,7 +6146,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5621,7 +6161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5636,7 +6176,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5656,7 +6214,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -5692,7 +6250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5707,7 +6265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5722,7 +6280,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5738,7 +6296,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5754,7 +6312,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5769,7 +6327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5784,7 +6342,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5808,7 +6384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5823,7 +6399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5838,7 +6414,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5854,7 +6430,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5870,7 +6446,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5885,7 +6461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5900,7 +6476,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5927,7 +6521,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetType, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetType, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceType": "System.Collections.Generic.List`1[System.String]", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", @@ -5953,7 +6547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5965,7 +6559,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5974,7 +6568,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5984,7 +6578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -6010,7 +6604,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -6036,7 +6630,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6049,7 +6643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6058,7 +6652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6067,7 +6661,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6077,7 +6671,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6087,7 +6681,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6096,7 +6690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6105,7 +6699,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6120,7 +6726,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6135,7 +6741,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6151,7 +6757,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6170,7 +6776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6185,7 +6791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6200,7 +6806,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6216,7 +6822,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6232,7 +6838,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6247,7 +6853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6262,7 +6868,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6282,7 +6906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6300,7 +6924,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6315,7 +6939,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6335,7 +6959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6350,7 +6974,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6365,7 +6989,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6381,7 +7005,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6397,7 +7021,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6412,7 +7036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6427,7 +7051,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6450,7 +7092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6465,7 +7107,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -6501,7 +7143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6516,7 +7158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6531,7 +7173,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6547,7 +7189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6563,7 +7205,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6578,7 +7220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6593,7 +7235,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6613,7 +7273,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -6649,7 +7309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6664,7 +7324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6679,7 +7339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6695,7 +7355,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6711,7 +7371,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6726,7 +7386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6741,7 +7401,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6765,7 +7443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6780,7 +7458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6795,7 +7473,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6811,7 +7489,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6827,7 +7505,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6842,7 +7520,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6857,7 +7535,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6884,7 +7580,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Action", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Action, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Action, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String" @@ -6988,7 +7684,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6997,7 +7693,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7012,7 +7720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7027,7 +7735,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7035,6 +7743,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -7054,7 +7780,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Branch", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Branch, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Branch, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction]", "Name": "System.String" @@ -7158,7 +7884,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction" }, "ValidateNotNullOrEmpty": false @@ -7168,7 +7894,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7183,7 +7921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction" }, "ValidateNotNullOrEmpty": false @@ -7199,7 +7937,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7207,6 +7945,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -7226,7 +7982,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", @@ -7255,7 +8011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7264,7 +8020,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7273,7 +8029,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7282,7 +8038,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7291,7 +8047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7300,7 +8056,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7309,7 +8065,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7318,7 +8074,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -7344,7 +8100,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -7370,7 +8126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7379,7 +8135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7392,7 +8148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7401,7 +8157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7410,7 +8166,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7420,7 +8176,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7430,7 +8186,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7439,7 +8195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7448,7 +8204,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7466,7 +8234,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7481,7 +8249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7496,7 +8264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7511,7 +8279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7526,7 +8294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7541,7 +8309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7556,7 +8324,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7571,7 +8339,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7590,7 +8358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7605,7 +8373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7620,7 +8388,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7636,7 +8404,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7652,7 +8420,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7667,7 +8435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7682,7 +8450,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7705,7 +8491,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7720,7 +8506,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7735,7 +8521,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7750,7 +8536,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7765,7 +8551,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7780,7 +8566,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7795,7 +8581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7810,7 +8596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7829,7 +8615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7844,7 +8630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7859,7 +8645,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7875,7 +8661,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7891,7 +8677,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7906,7 +8692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7921,7 +8707,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7944,7 +8748,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7959,7 +8763,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -7995,7 +8799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8010,7 +8814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8025,7 +8829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8041,7 +8845,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8057,7 +8861,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8072,7 +8876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8087,7 +8891,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8110,7 +8932,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8125,7 +8947,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8140,7 +8962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8155,7 +8977,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8170,7 +8992,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8185,7 +9007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8200,7 +9022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8219,7 +9041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8234,7 +9056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8249,7 +9071,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8265,7 +9087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8281,7 +9103,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8296,7 +9118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8311,7 +9133,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8331,7 +9171,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -8367,7 +9207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8382,7 +9222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8397,7 +9237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8413,7 +9253,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8429,7 +9269,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8444,7 +9284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8459,7 +9299,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8483,7 +9341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8498,7 +9356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8513,7 +9371,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8529,7 +9387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8545,7 +9403,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8560,7 +9418,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8575,7 +9433,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8602,7 +9478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities", "Selector": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]", @@ -8633,7 +9509,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8642,7 +9518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8651,7 +9527,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8660,7 +9536,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8669,7 +9545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8682,7 +9558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8691,7 +9567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8700,7 +9576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8709,7 +9585,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8719,7 +9595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8729,7 +9605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8738,7 +9614,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8747,7 +9623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8756,7 +9632,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8774,7 +9662,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8789,7 +9677,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8804,7 +9692,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8823,7 +9711,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8838,7 +9726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8853,7 +9741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8868,7 +9756,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8884,7 +9772,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8900,7 +9788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8915,7 +9803,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8930,7 +9818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8945,7 +9833,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8965,7 +9871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8983,7 +9889,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8998,7 +9904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9013,7 +9919,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9032,7 +9938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9047,7 +9953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9062,7 +9968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9077,7 +9983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9093,7 +9999,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9109,7 +10015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9124,7 +10030,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9139,7 +10045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9154,7 +10060,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9174,7 +10098,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9192,7 +10116,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9207,7 +10131,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9222,7 +10146,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9241,7 +10165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9256,7 +10180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9271,7 +10195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9286,7 +10210,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9302,7 +10226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9318,7 +10242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9333,7 +10257,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9348,7 +10272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9363,7 +10287,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9390,7 +10332,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Selector", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Selector, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Selector, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Filter": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IFilter", "Item": "System.Object", @@ -9569,7 +10511,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9578,7 +10520,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9593,7 +10547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9608,7 +10562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9616,6 +10570,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -9635,7 +10607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Step", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Step, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.Step, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Branch": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch]", "Name": "System.String" @@ -9739,7 +10711,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch" }, "ValidateNotNullOrEmpty": false @@ -9749,7 +10721,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9764,7 +10748,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch" }, "ValidateNotNullOrEmpty": false @@ -9778,13 +10762,31 @@ "ParameterMetadata": { "Name": "Name", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -9807,7 +10809,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", @@ -9833,7 +10835,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9842,7 +10844,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9851,7 +10853,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9860,7 +10862,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9869,7 +10871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9878,7 +10880,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9887,7 +10889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -9913,7 +10915,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9922,7 +10924,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9931,7 +10933,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9940,7 +10942,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9953,7 +10955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9962,7 +10964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9971,7 +10973,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9981,7 +10983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9991,7 +10993,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10000,7 +11002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10009,7 +11011,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10027,7 +11041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10042,7 +11056,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10057,7 +11071,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10072,7 +11086,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10087,7 +11101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10102,7 +11116,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10117,7 +11131,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10136,7 +11150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10151,7 +11165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10166,7 +11180,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10182,7 +11196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10198,7 +11212,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10213,7 +11227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10228,7 +11242,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10251,7 +11283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10266,7 +11298,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10281,7 +11313,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10296,7 +11328,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10311,7 +11343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10326,7 +11358,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10341,7 +11373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10360,7 +11392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10375,7 +11407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10390,7 +11422,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10406,7 +11438,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10422,7 +11454,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10437,7 +11469,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10452,7 +11484,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10475,7 +11525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10490,7 +11540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10505,7 +11555,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10520,7 +11570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10535,7 +11585,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10550,7 +11600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10565,7 +11615,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10580,7 +11630,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10599,7 +11649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10614,7 +11664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10629,7 +11679,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10645,7 +11695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10661,7 +11711,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10676,7 +11726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10691,7 +11741,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10711,7 +11779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -10743,7 +11811,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10758,7 +11826,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10777,7 +11845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10792,7 +11860,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10807,7 +11875,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10823,7 +11891,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10839,7 +11907,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10854,7 +11922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10869,7 +11937,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10893,7 +11979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10908,7 +11994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10923,7 +12009,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10939,7 +12025,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10955,7 +12041,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10970,7 +12056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10985,7 +12071,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11012,7 +12116,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -11028,7 +12132,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11037,7 +12141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11046,7 +12150,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11055,7 +12159,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11064,7 +12168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11073,7 +12177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11082,7 +12186,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11091,7 +12195,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -11117,7 +12221,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -11147,7 +12251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11156,7 +12260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11165,7 +12269,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11175,7 +12279,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11185,7 +12289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11194,7 +12298,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11203,7 +12307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11212,7 +12316,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11230,7 +12346,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11245,7 +12361,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -11281,7 +12397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11296,7 +12412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11311,7 +12427,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11327,7 +12443,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11343,7 +12459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11358,7 +12474,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11373,7 +12489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11388,7 +12504,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11411,7 +12545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11426,7 +12560,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11441,7 +12575,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11456,7 +12590,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11471,7 +12605,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11486,7 +12620,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11501,7 +12635,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11520,7 +12654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11535,7 +12669,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11550,7 +12684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11566,7 +12700,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11582,7 +12716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11597,7 +12731,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11612,7 +12746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11627,7 +12761,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11647,7 +12799,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -11683,7 +12835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11698,7 +12850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11713,7 +12865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11729,7 +12881,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11745,7 +12897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11760,7 +12912,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11775,7 +12927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11790,7 +12942,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11814,7 +12984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11829,7 +12999,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11844,7 +13014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11860,7 +13030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11876,7 +13046,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11891,7 +13061,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11906,7 +13076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11921,7 +13091,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11948,7 +13136,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -11964,7 +13152,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11973,7 +13161,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11982,7 +13170,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11991,7 +13179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -12021,7 +13209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12030,7 +13218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12039,7 +13227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12048,7 +13236,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12058,7 +13246,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12068,7 +13256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12077,7 +13265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12086,7 +13274,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12095,7 +13283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12104,7 +13292,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12122,7 +13322,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12137,7 +13337,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12152,7 +13352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12171,7 +13371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12186,7 +13386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12201,7 +13401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12216,7 +13416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12232,7 +13432,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12248,7 +13448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12263,7 +13463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12278,7 +13478,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12293,7 +13493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12308,7 +13508,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12328,7 +13546,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -12364,7 +13582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12379,7 +13597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12394,7 +13612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12409,7 +13627,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12425,7 +13643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12441,7 +13659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12456,7 +13674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12471,7 +13689,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12486,7 +13704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12501,7 +13719,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12525,7 +13761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12540,7 +13776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12555,7 +13791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12570,7 +13806,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12586,7 +13822,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12602,7 +13838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12617,7 +13853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12632,7 +13868,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12647,7 +13883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12662,7 +13898,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12689,7 +13943,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -12705,7 +13959,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12714,7 +13968,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12723,7 +13977,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12732,7 +13986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12741,7 +13995,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12750,7 +14004,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12759,7 +14013,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -12789,7 +14043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12798,7 +14052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12807,7 +14061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12817,7 +14071,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12827,7 +14081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12836,7 +14090,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12845,7 +14099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12854,7 +14108,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12872,7 +14138,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12887,7 +14153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12902,7 +14168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12917,7 +14183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12932,7 +14198,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12947,7 +14213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12966,7 +14232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12981,7 +14247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12996,7 +14262,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13012,7 +14278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13028,7 +14294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13043,7 +14309,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13058,7 +14324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13073,7 +14339,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13093,7 +14377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -13129,7 +14413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13144,7 +14428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13159,7 +14443,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13175,7 +14459,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13191,7 +14475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13206,7 +14490,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13221,7 +14505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13236,7 +14520,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13260,7 +14562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13275,7 +14577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13290,7 +14592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13306,7 +14608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13322,7 +14624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13337,7 +14639,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13352,7 +14654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13367,7 +14669,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13394,7 +14714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities", "Selector": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]", @@ -13425,7 +14745,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13434,7 +14754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13443,7 +14763,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13452,7 +14772,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -13482,7 +14802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13491,7 +14811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13500,7 +14820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13509,7 +14829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13519,7 +14839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13529,7 +14849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13538,7 +14858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13547,7 +14867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13556,7 +14876,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13574,7 +14906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13589,7 +14921,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13604,7 +14936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13623,7 +14955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13638,7 +14970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13653,7 +14985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13668,7 +15000,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13684,7 +15016,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13700,7 +15032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13715,7 +15047,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13730,7 +15062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13745,7 +15077,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13765,7 +15115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -13801,7 +15151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13816,7 +15166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13831,7 +15181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13846,7 +15196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13862,7 +15212,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13878,7 +15228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13893,7 +15243,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13908,7 +15258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13923,7 +15273,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13947,7 +15315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13962,7 +15330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13977,7 +15345,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13992,7 +15360,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14008,7 +15376,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14024,7 +15392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14039,7 +15407,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14054,7 +15422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14069,7 +15437,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14096,7 +15482,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities", "Selector": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]", @@ -14127,7 +15513,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14136,7 +15522,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14145,7 +15531,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14154,7 +15540,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -14184,7 +15570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14193,7 +15579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14202,7 +15588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14211,7 +15597,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14221,7 +15607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14231,7 +15617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14240,7 +15626,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14249,7 +15635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14258,7 +15644,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -14276,7 +15674,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14291,7 +15689,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14306,7 +15704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14325,7 +15723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14340,7 +15738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14355,7 +15753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14370,7 +15768,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14386,7 +15784,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14402,7 +15800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14417,7 +15815,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14432,7 +15830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14447,7 +15845,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14467,7 +15883,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -14503,7 +15919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14518,7 +15934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14533,7 +15949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14548,7 +15964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14564,7 +15980,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14580,7 +15996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14595,7 +16011,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14610,7 +16026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14625,7 +16041,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14649,7 +16083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14664,7 +16098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14679,7 +16113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14694,7 +16128,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14710,7 +16144,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14726,7 +16160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14741,7 +16175,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14756,7 +16190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14771,7 +16205,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14798,7 +16250,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ICapability, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", @@ -14827,7 +16279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14836,7 +16288,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14845,7 +16297,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14854,7 +16306,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14863,7 +16315,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14872,7 +16324,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14881,7 +16333,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14890,7 +16342,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -14916,7 +16368,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -14946,7 +16398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14955,7 +16407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14964,7 +16416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14974,7 +16426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14984,7 +16436,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14993,7 +16445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15002,7 +16454,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15020,7 +16484,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15035,7 +16499,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -15071,7 +16535,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15086,7 +16550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15101,7 +16565,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15117,7 +16581,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15133,7 +16597,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15148,7 +16612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15163,7 +16627,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15186,7 +16668,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15201,7 +16683,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15216,7 +16698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15231,7 +16713,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15246,7 +16728,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15261,7 +16743,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15276,7 +16758,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15295,7 +16777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15310,7 +16792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15325,7 +16807,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15341,7 +16823,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15357,7 +16839,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15372,7 +16854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15387,7 +16869,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15407,7 +16907,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -15443,7 +16943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15458,7 +16958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15473,7 +16973,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15489,7 +16989,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15505,7 +17005,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15520,7 +17020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15535,7 +17035,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15559,7 +17077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15574,7 +17092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15589,7 +17107,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15605,7 +17123,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15621,7 +17139,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15636,7 +17154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15651,7 +17169,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15678,7 +17214,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperiment, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities", "Selector": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]", @@ -15709,7 +17245,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15718,7 +17254,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15727,7 +17263,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15736,7 +17272,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -15762,7 +17298,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -15774,7 +17310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15783,7 +17319,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector" }, "ValidateNotNullOrEmpty": false @@ -15793,7 +17329,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep" }, "ValidateNotNullOrEmpty": false @@ -15803,7 +17339,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15812,7 +17348,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -15826,7 +17362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15835,7 +17371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15844,7 +17380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15853,7 +17389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15863,7 +17399,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15873,7 +17409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15882,7 +17418,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15891,7 +17427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15900,7 +17436,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15918,7 +17466,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15933,7 +17481,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15948,7 +17496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15963,7 +17511,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -15981,7 +17529,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15996,7 +17544,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector" }, "ValidateNotNullOrEmpty": false @@ -16012,7 +17560,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep" }, "ValidateNotNullOrEmpty": false @@ -16028,7 +17576,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16043,7 +17591,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -16063,7 +17611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16078,7 +17626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16093,7 +17641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16108,7 +17656,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16124,7 +17672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16140,7 +17688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16155,7 +17703,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16170,7 +17718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16185,7 +17733,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16205,7 +17771,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -16237,7 +17803,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -16255,7 +17821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16270,7 +17836,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector" }, "ValidateNotNullOrEmpty": false @@ -16286,7 +17852,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep" }, "ValidateNotNullOrEmpty": false @@ -16302,7 +17868,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16317,7 +17883,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -16337,7 +17903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16352,7 +17918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16367,7 +17933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16382,7 +17948,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16398,7 +17964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16414,7 +17980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16429,7 +17995,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16444,7 +18010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16459,7 +18025,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16479,7 +18063,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -16497,7 +18081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16512,7 +18096,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector" }, "ValidateNotNullOrEmpty": false @@ -16528,7 +18112,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep" }, "ValidateNotNullOrEmpty": false @@ -16544,7 +18128,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16559,7 +18143,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -16579,7 +18163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16594,7 +18178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16609,7 +18193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16624,7 +18208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16640,7 +18224,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16656,7 +18240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16671,7 +18255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16686,7 +18270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16701,7 +18285,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16728,7 +18330,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITarget, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", @@ -16754,7 +18356,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16763,7 +18365,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16772,7 +18374,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16781,7 +18383,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16790,7 +18392,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16799,7 +18401,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16808,7 +18410,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -16834,7 +18436,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16843,7 +18445,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16856,7 +18458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16865,7 +18467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16874,7 +18476,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16884,7 +18486,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16894,7 +18496,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16903,7 +18505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16912,7 +18514,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -16930,7 +18544,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16945,7 +18559,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16960,7 +18574,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16975,7 +18589,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16990,7 +18604,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17005,7 +18619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17020,7 +18634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17035,7 +18649,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17054,7 +18668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17069,7 +18683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17084,7 +18698,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17100,7 +18714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17116,7 +18730,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17131,7 +18745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17146,7 +18760,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17166,7 +18798,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IChaosIdentity, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AsyncOperationId": "System.String", "CapabilityName": "System.String", @@ -17198,7 +18830,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17213,7 +18845,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17232,7 +18864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17247,7 +18879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17262,7 +18894,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17278,7 +18910,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17294,7 +18926,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17309,7 +18941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17324,7 +18956,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17344,7 +18994,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17359,7 +19009,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17378,7 +19028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17393,7 +19043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17408,7 +19058,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17424,7 +19074,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep[], Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17440,7 +19090,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17455,7 +19105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17470,7 +19120,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17530,7 +19198,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -17538,12 +19206,12 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.SendAsyncStep, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -17677,17 +19345,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -17695,38 +19363,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -17734,7 +19402,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus" ] @@ -17742,7 +19410,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStepStatus, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Branch": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus]", "Status": "System.String", @@ -17753,7 +19421,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus" ] @@ -17761,7 +19429,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranchStatus, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus]", "BranchId": "System.String", @@ -17772,7 +19440,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus" ] @@ -17780,7 +19448,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IActionStatus, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties]", "EndTime": "System.Nullable`1[System.DateTime]", @@ -17793,7 +19461,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties" ] @@ -17801,7 +19469,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IExperimentExecutionActionTargetDetailsProperties, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetCompletedTime": "System.Nullable`1[System.DateTime]", "TargetFailedTime": "System.Nullable`1[System.DateTime]", @@ -17814,12 +19482,12 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IUserAssignedIdentities, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector" ] @@ -17827,7 +19495,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ISelector, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FilterType": "System.String", "Id": "System.String", @@ -17837,7 +19505,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep" ] @@ -17845,7 +19513,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IStep, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Branch": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch]", "Name": "System.String" @@ -17854,7 +19522,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch" ] @@ -17862,7 +19530,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IBranch, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction]", "Name": "System.String" @@ -17871,7 +19539,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction" ] @@ -17879,7 +19547,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IAction, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String" @@ -17888,12 +19556,12 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.ITargetProperties, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.Json.JsonNode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.Json", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.Json.JsonNode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.Json.JsonNode, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.Json.JsonNode, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Item": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Runtime.Json.JsonNode" }, @@ -17925,7 +19593,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IFilter": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IFilter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IFilter, Az.Chaos.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Chaos.Models.IFilter, Az.Chaos.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" } diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Compute.json b/tools/Tools.Common/SerializedCmdlets/Az.Compute.json index a12ebb394c08..e88085537e80 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": "10.0.0", + "ModuleVersion": "10.0.1", "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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -111,7 +111,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -206,7 +206,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -264,7 +264,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -413,7 +413,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalFilePath": "System.IO.FileInfo", "DestinationUri": "System.Uri" @@ -547,7 +547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -969,7 +969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1180,7 +1180,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -1271,7 +1271,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -1335,7 +1335,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SettingNames" ] @@ -1388,7 +1388,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -1464,7 +1464,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SettingNames" ] @@ -1538,7 +1538,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -1623,7 +1623,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -1697,7 +1697,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -1770,7 +1770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1919,7 +1919,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -2028,7 +2028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2191,7 +2191,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -2312,7 +2312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2472,7 +2472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2639,7 +2639,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -2727,7 +2727,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -2782,7 +2782,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -2855,7 +2855,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -2916,7 +2916,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -3025,7 +3025,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -3116,7 +3116,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -3255,7 +3255,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -3417,7 +3417,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -3631,7 +3631,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -3722,7 +3722,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -3848,7 +3848,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -4013,7 +4013,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -4090,7 +4090,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -4134,7 +4134,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PassNames" ] @@ -4146,7 +4146,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ComponentNames" ] @@ -4158,7 +4158,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SettingNames" ] @@ -4217,7 +4217,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -4267,7 +4267,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PassNames" ] @@ -4285,7 +4285,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ComponentNames" ] @@ -4303,7 +4303,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SettingNames" ] @@ -4392,7 +4392,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -4469,7 +4469,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -4531,7 +4531,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -4653,7 +4653,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -4733,7 +4733,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -4927,7 +4927,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -5004,7 +5004,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -5147,7 +5147,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -5350,7 +5350,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -5427,7 +5427,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -5606,7 +5606,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -5869,7 +5869,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -5929,7 +5929,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -5956,7 +5956,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -6029,7 +6029,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -6062,7 +6062,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -6171,7 +6171,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -6262,7 +6262,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -6376,7 +6376,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -6523,7 +6523,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -6600,7 +6600,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -6674,7 +6674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration" }, "ValidateNotNullOrEmpty": false @@ -6771,7 +6771,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -6869,7 +6869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration" }, "ValidateNotNullOrEmpty": false @@ -7020,7 +7020,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand" ] @@ -7183,7 +7183,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -7837,7 +7837,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -8150,7 +8150,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8227,7 +8227,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8280,7 +8280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VaultCertificate" }, "ValidateNotNullOrEmpty": false @@ -8328,7 +8328,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8393,7 +8393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VaultCertificate" }, "ValidateNotNullOrEmpty": false @@ -8465,7 +8465,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8542,7 +8542,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8654,7 +8654,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8808,7 +8808,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8885,7 +8885,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -8985,7 +8985,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -9121,7 +9121,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -9192,7 +9192,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -9275,7 +9275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9340,7 +9340,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -9459,7 +9459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9560,7 +9560,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -9637,7 +9637,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -9681,7 +9681,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ProtocolTypes" ] @@ -9740,7 +9740,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -9790,7 +9790,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ProtocolTypes" ] @@ -9879,7 +9879,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -10164,7 +10164,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -10552,7 +10552,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -10907,7 +10907,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", @@ -10993,7 +10993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.IntervalInMins", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11163,7 +11163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.IntervalInMins", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11418,7 +11418,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", @@ -11905,7 +11905,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12116,7 +12116,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -12374,7 +12374,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -12840,7 +12840,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -13040,7 +13040,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -13321,7 +13321,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -13643,7 +13643,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -14059,7 +14059,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -14640,7 +14640,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -15332,7 +15332,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -16179,7 +16179,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -16586,7 +16586,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -17123,7 +17123,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -17399,7 +17399,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent", @@ -18172,7 +18172,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView", @@ -18419,7 +18419,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -18615,7 +18615,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -18884,7 +18884,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -19204,7 +19204,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -19289,7 +19289,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -19392,7 +19392,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -19604,7 +19604,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -19942,7 +19942,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -20214,7 +20214,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -20489,7 +20489,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -20777,7 +20777,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -20862,7 +20862,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -21328,7 +21328,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -21870,7 +21870,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -22141,7 +22141,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -22405,7 +22405,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -22709,7 +22709,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -22810,7 +22810,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -23076,7 +23076,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -23208,7 +23208,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -23298,7 +23298,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -23485,7 +23485,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -23651,7 +23651,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -23755,7 +23755,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -24036,7 +24036,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -24247,7 +24247,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Version": "System.String", @@ -24297,7 +24297,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "SupportsMultipleExtensions": "System.Nullable`1[System.Boolean]", @@ -24569,7 +24569,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "PublisherName": "System.String", @@ -24762,7 +24762,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageDeprecationStatus": "Microsoft.Azure.Management.Compute.Models.ImageDeprecationStatus", "StatusCode": "System.Net.HttpStatusCode", @@ -24816,7 +24816,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticOSUpgradeProperties": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties", "ImageDeprecationStatus": "Microsoft.Azure.Management.Compute.Models.ImageDeprecationStatus", @@ -25416,7 +25416,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Offer": "System.String", @@ -25633,7 +25633,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "PublisherName": "System.String", @@ -25801,7 +25801,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Skus": "System.String", @@ -26043,7 +26043,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView", "Source": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource", @@ -26293,7 +26293,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -26535,7 +26535,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MemoryInMB": "System.Int32", "NumberOfCores": "System.Int32", @@ -26866,7 +26866,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -27094,7 +27094,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -27677,7 +27677,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionSettings": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings", "EncryptionEnabled": "System.Boolean", @@ -27902,7 +27902,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Policy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", @@ -28152,7 +28152,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", "Capacity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity", @@ -28396,7 +28396,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -28848,7 +28848,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsVolumeEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", "DataVolumesEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", @@ -29098,7 +29098,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView", "Source": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource", @@ -29372,7 +29372,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "Microsoft.Azure.Management.Compute.Models.UsageName", "StatusCode": "System.Net.HttpStatusCode", @@ -29540,7 +29540,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessSAS": "System.String", "SecurityDataAccessSAS": "System.String" @@ -29894,7 +29894,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessSAS": "System.String", "SecurityDataAccessSAS": "System.String" @@ -30224,7 +30224,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineInstallPatchesResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -30313,7 +30313,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -31277,7 +31277,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -31513,7 +31513,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -31832,7 +31832,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -31914,7 +31914,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -32192,7 +32192,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -32392,7 +32392,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -32818,7 +32818,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -32941,7 +32941,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -33466,7 +33466,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -33658,7 +33658,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -33787,7 +33787,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -34307,7 +34307,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -34482,7 +34482,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -34873,7 +34873,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -35259,7 +35259,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -35585,7 +35585,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -35690,7 +35690,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -35821,7 +35821,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -36013,7 +36013,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -36261,7 +36261,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -36375,7 +36375,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -36414,7 +36414,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -36532,7 +36532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -36547,7 +36547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -36601,7 +36601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -36614,7 +36614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -36824,7 +36824,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -36887,7 +36887,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -37077,7 +37077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -37098,7 +37098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -37182,7 +37182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -37201,7 +37201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -37453,7 +37453,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -37534,7 +37534,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -37641,7 +37641,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -37806,7 +37806,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -38179,7 +38179,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -38417,7 +38417,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -38556,7 +38556,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -38604,7 +38604,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -38643,7 +38643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -38656,7 +38656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -38893,7 +38893,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -38971,7 +38971,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -39028,7 +39028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -39047,7 +39047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -39233,7 +39233,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -39835,7 +39835,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -39975,7 +39975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39984,7 +39984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40129,7 +40129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature" }, "ValidateNotNullOrEmpty": false @@ -40309,7 +40309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40324,7 +40324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40565,7 +40565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature" }, "ValidateNotNullOrEmpty": false @@ -40720,7 +40720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40735,7 +40735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40976,7 +40976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature" }, "ValidateNotNullOrEmpty": false @@ -41063,7 +41063,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -41178,7 +41178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage" }, "ValidateNotNullOrEmpty": false @@ -41188,7 +41188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource", "HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]", @@ -41437,7 +41437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage" }, "ValidateNotNullOrEmpty": false @@ -41453,7 +41453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource", "HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]", @@ -41719,7 +41719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage" }, "ValidateNotNullOrEmpty": false @@ -41735,7 +41735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource", "HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]", @@ -41978,7 +41978,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -42103,7 +42103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42276,7 +42276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42430,7 +42430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42531,7 +42531,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -43059,7 +43059,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -43135,7 +43135,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -43237,7 +43237,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -43400,7 +43400,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -43491,7 +43491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "OsState": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", @@ -43520,7 +43520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk" }, "ValidateNotNullOrEmpty": false @@ -43637,7 +43637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "OsState": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", @@ -43678,7 +43678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk" }, "ValidateNotNullOrEmpty": false @@ -43765,7 +43765,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent", @@ -44118,7 +44118,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView", @@ -44439,7 +44439,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -44877,7 +44877,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -44970,7 +44970,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -45089,7 +45089,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -45269,7 +45269,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -45353,7 +45353,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -45437,7 +45437,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -45464,7 +45464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -45509,7 +45509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -45522,7 +45522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -45684,7 +45684,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -45822,7 +45822,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -45861,7 +45861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -45930,7 +45930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -45949,7 +45949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -46177,7 +46177,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -46244,7 +46244,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -46298,7 +46298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -46320,7 +46320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -46443,7 +46443,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -46527,7 +46527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -46561,7 +46561,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -46726,7 +46726,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -46980,7 +46980,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -47025,7 +47025,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -47143,7 +47143,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -47821,7 +47821,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -49925,7 +49925,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -50053,7 +50053,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -50878,7 +50878,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -51974,7 +51974,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceResource": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", @@ -52064,7 +52064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -52225,7 +52225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -52400,7 +52400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -52587,7 +52587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -52691,7 +52691,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -52883,7 +52883,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -53704,7 +53704,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -53947,7 +53947,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -54190,7 +54190,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -54288,7 +54288,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -54498,7 +54498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -54904,7 +54904,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -55310,7 +55310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -56074,7 +56074,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -56220,7 +56220,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.UpgradeMode" ] @@ -56232,7 +56232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", @@ -56252,7 +56252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", "OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", @@ -56267,7 +56267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration" }, "ValidateNotNullOrEmpty": false @@ -56277,7 +56277,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension" }, "ValidateNotNullOrEmpty": false @@ -56372,7 +56372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableCrossZoneUpgrade": "System.Nullable`1[System.Boolean]", "PrioritizeUnhealthyInstances": "System.Nullable`1[System.Boolean]", @@ -56448,7 +56448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "StorageUri": "System.String" @@ -56552,7 +56552,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -56952,7 +56952,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.UpgradeMode" ] @@ -56970,7 +56970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", @@ -56996,7 +56996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", "OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", @@ -57017,7 +57017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration" }, "ValidateNotNullOrEmpty": false @@ -57033,7 +57033,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension" }, "ValidateNotNullOrEmpty": false @@ -57188,7 +57188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableCrossZoneUpgrade": "System.Nullable`1[System.Boolean]", "PrioritizeUnhealthyInstances": "System.Nullable`1[System.Boolean]", @@ -57306,7 +57306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "StorageUri": "System.String" @@ -57883,7 +57883,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -58043,7 +58043,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.UpgradeMode" ] @@ -58061,7 +58061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", @@ -58087,7 +58087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", "OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", @@ -58108,7 +58108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration" }, "ValidateNotNullOrEmpty": false @@ -58124,7 +58124,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension" }, "ValidateNotNullOrEmpty": false @@ -58279,7 +58279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableCrossZoneUpgrade": "System.Nullable`1[System.Boolean]", "PrioritizeUnhealthyInstances": "System.Nullable`1[System.Boolean]", @@ -58397,7 +58397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "StorageUri": "System.String" @@ -58981,7 +58981,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -59173,7 +59173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", @@ -59428,7 +59428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag" }, "ValidateNotNullOrEmpty": false @@ -59671,7 +59671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag" }, "ValidateNotNullOrEmpty": false @@ -59773,7 +59773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -59974,7 +59974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertificateUrl": "System.String", "CertificateStore": "System.String" @@ -60780,7 +60780,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -61026,7 +61026,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -61277,7 +61277,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -61359,7 +61359,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -61606,7 +61606,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -61768,7 +61768,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -62092,7 +62092,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -62174,7 +62174,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -62419,7 +62419,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -62579,7 +62579,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -62670,7 +62670,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -63029,7 +63029,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -63145,7 +63145,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -63236,7 +63236,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -63592,7 +63592,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -63705,7 +63705,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -63805,7 +63805,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -64187,7 +64187,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -64311,7 +64311,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -64423,7 +64423,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -64813,7 +64813,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -64927,7 +64927,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -65018,7 +65018,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -65285,7 +65285,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -65452,7 +65452,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -65534,7 +65534,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -65782,7 +65782,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -65945,7 +65945,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -66269,7 +66269,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -66324,7 +66324,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -66396,7 +66396,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -66491,7 +66491,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -66575,7 +66575,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -66666,7 +66666,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent", @@ -67025,7 +67025,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent", @@ -67141,7 +67141,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView", @@ -67364,7 +67364,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -67561,7 +67561,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -67885,7 +67885,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -67967,7 +67967,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -68171,7 +68171,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -68299,7 +68299,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -68346,7 +68346,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -68894,7 +68894,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -69168,7 +69168,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -69442,7 +69442,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -69662,7 +69662,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -70190,7 +70190,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -70464,7 +70464,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -70555,7 +70555,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -70673,7 +70673,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -70824,7 +70824,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -71074,7 +71074,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -71348,7 +71348,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -71586,7 +71586,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -71860,7 +71860,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -71948,7 +71948,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72050,7 +72050,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72182,7 +72182,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72273,7 +72273,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72383,7 +72383,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72520,7 +72520,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72611,7 +72611,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72720,7 +72720,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -72856,7 +72856,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -73106,7 +73106,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -73504,7 +73504,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -73581,7 +73581,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -73684,7 +73684,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -73798,7 +73798,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -73915,7 +73915,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74021,7 +74021,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74098,7 +74098,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74192,7 +74192,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74316,7 +74316,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74393,7 +74393,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74493,7 +74493,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74607,7 +74607,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74721,7 +74721,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -74827,7 +74827,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -74887,7 +74887,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -74961,7 +74961,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -75065,7 +75065,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -75142,7 +75142,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -75242,7 +75242,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -75356,7 +75356,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -75470,7 +75470,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -75576,7 +75576,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -75890,7 +75890,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -75967,7 +75967,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -76058,7 +76058,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -76179,7 +76179,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -76250,7 +76250,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -76335,7 +76335,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -76450,7 +76450,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WalkPerformed": "System.Nullable`1[System.Boolean]", "NextPlatformUpdateDomain": "System.Nullable`1[System.Int32]" @@ -76553,7 +76553,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -77019,7 +77019,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -77188,7 +77188,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -77279,7 +77279,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -77507,7 +77507,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -77644,7 +77644,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -77691,7 +77691,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -78353,7 +78353,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -78664,7 +78664,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -78949,7 +78949,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -79234,7 +79234,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalFilePath": "System.IO.FileInfo", "Source": "System.Uri" @@ -79856,7 +79856,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -80458,7 +80458,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -80542,7 +80542,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -80649,7 +80649,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -80792,7 +80792,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -80876,7 +80876,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -80983,7 +80983,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81126,7 +81126,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81210,7 +81210,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81317,7 +81317,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81460,7 +81460,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81547,7 +81547,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81657,7 +81657,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -81800,7 +81800,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -81864,7 +81864,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -81951,7 +81951,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -82074,7 +82074,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -82138,7 +82138,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -82225,7 +82225,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -82348,7 +82348,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -82403,7 +82403,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -82425,7 +82425,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -82437,7 +82437,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes" ] @@ -82458,7 +82458,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -82553,7 +82553,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -82581,7 +82581,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -82599,7 +82599,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes" ] @@ -82632,7 +82632,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -82781,7 +82781,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -82853,7 +82853,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -82948,7 +82948,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83079,7 +83079,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83151,7 +83151,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83246,7 +83246,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83377,7 +83377,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83449,7 +83449,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83544,7 +83544,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -83675,7 +83675,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -83730,7 +83730,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -83808,7 +83808,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -83922,7 +83922,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -83977,7 +83977,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -84055,7 +84055,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -84169,7 +84169,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -84216,7 +84216,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -85326,7 +85326,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -85704,7 +85704,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -86184,7 +86184,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -86825,7 +86825,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -87075,7 +87075,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -87429,7 +87429,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -87520,7 +87520,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -87652,7 +87652,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -87810,7 +87810,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -87938,7 +87938,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -88055,7 +88055,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -89495,7 +89495,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -89576,7 +89576,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -89640,7 +89640,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -90410,7 +90410,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -90742,7 +90742,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -91472,7 +91472,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -91761,7 +91761,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -92174,7 +92174,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -92265,7 +92265,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -92341,7 +92341,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -92433,7 +92433,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -92494,7 +92494,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -92642,7 +92642,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -92703,7 +92703,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -92854,7 +92854,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -92915,7 +92915,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -93052,7 +93052,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -93524,7 +93524,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -95805,7 +95805,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -96686,7 +96686,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -97734,7 +97734,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -97825,7 +97825,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -98065,7 +98065,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -98343,7 +98343,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -98651,7 +98651,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -98929,7 +98929,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -99237,7 +99237,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -99455,7 +99455,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -99617,7 +99617,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -99708,7 +99708,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -99789,7 +99789,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -100010,7 +100010,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -100109,7 +100109,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -100380,7 +100380,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -100479,7 +100479,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -100810,7 +100810,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -100909,7 +100909,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -101180,7 +101180,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -101279,7 +101279,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -101610,7 +101610,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -101709,7 +101709,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -101969,7 +101969,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102060,7 +102060,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102192,7 +102192,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102369,7 +102369,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102460,7 +102460,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102565,7 +102565,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102697,7 +102697,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102788,7 +102788,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -102929,7 +102929,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -103102,7 +103102,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -103230,7 +103230,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -103347,7 +103347,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -103434,7 +103434,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -103450,7 +103450,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -103473,7 +103473,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -103601,7 +103601,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -103623,7 +103623,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -103652,7 +103652,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -103747,7 +103747,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -104566,7 +104566,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -104643,7 +104643,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -104746,7 +104746,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -104885,7 +104885,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", "Settings": "System.Object", @@ -105499,7 +105499,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -105596,7 +105596,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -106017,7 +106017,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -106168,7 +106168,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -106245,7 +106245,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -106370,7 +106370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent" }, "ValidateNotNullOrEmpty": false @@ -106380,7 +106380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.WinRMListener" }, "ValidateNotNullOrEmpty": false @@ -106402,7 +106402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.SshPublicKey" }, "ValidateNotNullOrEmpty": false @@ -106412,7 +106412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup" }, "ValidateNotNullOrEmpty": false @@ -106487,7 +106487,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -106666,7 +106666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent" }, "ValidateNotNullOrEmpty": false @@ -106682,7 +106682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.WinRMListener" }, "ValidateNotNullOrEmpty": false @@ -106716,7 +106716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.SshPublicKey" }, "ValidateNotNullOrEmpty": false @@ -106732,7 +106732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup" }, "ValidateNotNullOrEmpty": false @@ -106849,7 +106849,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -106926,7 +106926,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107074,7 +107074,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107288,7 +107288,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107365,7 +107365,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107456,7 +107456,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107577,7 +107577,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107654,7 +107654,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -107746,7 +107746,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -107776,7 +107776,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -107861,7 +107861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk" }, "ValidateNotNullOrEmpty": false @@ -107954,7 +107954,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -108082,7 +108082,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -108130,7 +108130,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -108269,7 +108269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk" }, "ValidateNotNullOrEmpty": false @@ -108416,7 +108416,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -108493,7 +108493,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -108593,7 +108593,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -108729,7 +108729,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -109654,7 +109654,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -109745,7 +109745,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -109859,7 +109859,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -110006,7 +110006,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -110053,7 +110053,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -110473,7 +110473,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -110784,7 +110784,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -110854,7 +110854,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -111051,7 +111051,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -111315,7 +111315,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -111600,7 +111600,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -111647,7 +111647,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -112456,7 +112456,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -113006,7 +113006,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -113330,7 +113330,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Result": "System.Boolean", "PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", @@ -113627,7 +113627,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -113691,7 +113691,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -113796,7 +113796,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -113942,7 +113942,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -114077,7 +114077,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -114166,7 +114166,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -114408,7 +114408,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -114741,7 +114741,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -114816,7 +114816,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -115040,7 +115040,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", @@ -115374,7 +115374,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -115479,7 +115479,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -115510,7 +115510,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -115641,7 +115641,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -115775,7 +115775,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -115967,7 +115967,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -116057,7 +116057,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -116589,7 +116589,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", "ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", @@ -116970,7 +116970,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -117057,7 +117057,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -117862,7 +117862,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile", @@ -118452,7 +118452,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -118559,7 +118559,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -119381,7 +119381,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -119976,7 +119976,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -120085,7 +120085,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -120693,7 +120693,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "SafetyProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", @@ -121106,7 +121106,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -121213,7 +121213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -121347,7 +121347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -121441,7 +121441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -121550,7 +121550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -121621,7 +121621,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -121724,7 +121724,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -122069,7 +122069,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", @@ -122183,7 +122183,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.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]", @@ -122403,7 +122403,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -122496,7 +122496,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -122518,7 +122518,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -122637,7 +122637,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -122762,7 +122762,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan", "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", @@ -122942,7 +122942,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -123025,7 +123025,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -123268,7 +123268,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Name": "System.String", @@ -123426,7 +123426,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -123495,7 +123495,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -123559,7 +123559,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -123841,7 +123841,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -124275,7 +124275,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -124327,7 +124327,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -124779,7 +124779,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -125201,7 +125201,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", @@ -125627,7 +125627,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -125725,7 +125725,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -125874,7 +125874,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -125994,7 +125994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -126193,7 +126193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -126488,7 +126488,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -126873,7 +126873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -127204,7 +127204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -127631,7 +127631,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -127682,7 +127682,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile", "ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation", @@ -128067,7 +128067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -128398,7 +128398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -128816,7 +128816,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -129127,7 +129127,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -129228,7 +129228,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk" }, "ValidateNotNullOrEmpty": false @@ -129265,7 +129265,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -129422,7 +129422,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk" }, "ValidateNotNullOrEmpty": false @@ -129532,7 +129532,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk" }, "ValidateNotNullOrEmpty": false @@ -129672,7 +129672,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk" }, "ValidateNotNullOrEmpty": false @@ -129782,7 +129782,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -129826,7 +129826,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk" }, "ValidateNotNullOrEmpty": false @@ -143495,7 +143495,7 @@ "Microsoft.Azure.Management.Compute.Models.ExtendedLocation": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String" @@ -143551,7 +143551,7 @@ "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsDisk": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk", "DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ImageDataDisk]", @@ -143611,7 +143611,7 @@ "Microsoft.Azure.Management.Compute.Models.ImageOSDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "OsState": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", @@ -143701,7 +143701,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -143747,7 +143747,7 @@ "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -143839,7 +143839,7 @@ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -143926,7 +143926,7 @@ "Microsoft.Azure.Management.Compute.Models.SubResource": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SubResource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -143972,7 +143972,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CachingTypes" ] @@ -143980,7 +143980,7 @@ "Microsoft.Azure.Management.Compute.Models.CachingTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -144080,7 +144080,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ImageDataDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ImageDataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ImageDataDisk" ] @@ -144088,7 +144088,7 @@ "Microsoft.Azure.Management.Compute.Models.ImageDataDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "Snapshot": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -144324,7 +144324,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GalleryApplications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication]" }, @@ -144361,7 +144361,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication" ] @@ -144369,7 +144369,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]", "EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]", @@ -144411,7 +144411,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -144498,7 +144498,7 @@ "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UltraSSDEnabled": "System.Nullable`1[System.Boolean]", "HibernationEnabled": "System.Nullable`1[System.Boolean]" @@ -144549,7 +144549,7 @@ "Microsoft.Azure.Management.Compute.Models.BillingProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.BillingProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BillingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BillingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxPrice": "System.Nullable`1[System.Double]" }, @@ -144603,7 +144603,7 @@ "Microsoft.Azure.Management.Compute.Models.CapacityReservationProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CapacityReservationProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CapacityReservationGroup": "Microsoft.Azure.Management.Compute.Models.SubResource" }, @@ -144649,7 +144649,7 @@ "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics" }, @@ -144695,7 +144695,7 @@ "Microsoft.Azure.Management.Compute.Models.BootDiagnostics": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "StorageUri": "System.String" @@ -144746,7 +144746,7 @@ "Microsoft.Azure.Management.Compute.Models.HardwareProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HardwareProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HardwareProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmSizeProperties": "Microsoft.Azure.Management.Compute.Models.VMSizeProperties", "VmSize": "System.String" @@ -144797,7 +144797,7 @@ "Microsoft.Azure.Management.Compute.Models.VMSizeProperties": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VMSizeProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VMSizeProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VMSizeProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VCPUsAvailable": "System.Nullable`1[System.Int32]", "VCPUsPerCore": "System.Nullable`1[System.Int32]" @@ -144848,7 +144848,7 @@ "Microsoft.Azure.Management.Compute.Models.NetworkProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.NetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]", "NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration]", @@ -144904,7 +144904,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference" ] @@ -144912,7 +144912,7 @@ "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Primary": "System.Nullable`1[System.Boolean]", "DeleteOption": "System.String", @@ -144981,7 +144981,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration" ] @@ -144989,7 +144989,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "DscpConfiguration": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -145144,7 +145144,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceDnsSettingsConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceDnsSettingsConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceDnsSettingsConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceDnsSettingsConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsServers": "System.Collections.Generic.IList`1[System.String]" }, @@ -145190,7 +145190,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration" ] @@ -145198,7 +145198,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Management.Compute.Models.SubResource", "PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressConfiguration", @@ -145283,7 +145283,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.PublicIPAddressSku", "PublicIPPrefix": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -145373,7 +145373,7 @@ "Microsoft.Azure.Management.Compute.Models.PublicIPAddressSku": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PublicIPAddressSku", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PublicIPAddressSku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PublicIPAddressSku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -145424,7 +145424,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressDnsSettingsConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressDnsSettingsConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressDnsSettingsConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePublicIPAddressDnsSettingsConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DomainNameLabel": "System.String", "DomainNameLabelScope": "System.String" @@ -145479,7 +145479,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag" ] @@ -145487,7 +145487,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -145538,7 +145538,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SubResource" ] @@ -145546,7 +145546,7 @@ "Microsoft.Azure.Management.Compute.Models.OSProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", @@ -145632,7 +145632,7 @@ "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PatchSettings": "Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings", "Ssh": "Microsoft.Azure.Management.Compute.Models.SshConfiguration", @@ -145698,7 +145698,7 @@ "Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticByPlatformSettings": "Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings", "AssessmentMode": "System.String", @@ -145754,7 +145754,7 @@ "Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BypassPlatformSafetyChecksOnUserSchedule": "System.Nullable`1[System.Boolean]", "RebootSetting": "System.String" @@ -145805,7 +145805,7 @@ "Microsoft.Azure.Management.Compute.Models.SshConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SshConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]" }, @@ -145851,7 +145851,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SshPublicKey" ] @@ -145859,7 +145859,7 @@ "Microsoft.Azure.Management.Compute.Models.SshPublicKey": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Path": "System.String", "KeyData": "System.String" @@ -145910,7 +145910,7 @@ "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PatchSettings": "Microsoft.Azure.Management.Compute.Models.PatchSettings", "WinRM": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration", @@ -145986,7 +145986,7 @@ "Microsoft.Azure.Management.Compute.Models.PatchSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PatchSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PatchSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PatchSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticByPlatformSettings": "Microsoft.Azure.Management.Compute.Models.WindowsVMGuestPatchAutomaticByPlatformSettings", "EnableHotpatching": "System.Nullable`1[System.Boolean]", @@ -146047,7 +146047,7 @@ "Microsoft.Azure.Management.Compute.Models.WindowsVMGuestPatchAutomaticByPlatformSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.WindowsVMGuestPatchAutomaticByPlatformSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsVMGuestPatchAutomaticByPlatformSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsVMGuestPatchAutomaticByPlatformSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BypassPlatformSafetyChecksOnUserSchedule": "System.Nullable`1[System.Boolean]", "RebootSetting": "System.String" @@ -146098,7 +146098,7 @@ "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Listeners": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]" }, @@ -146144,7 +146144,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.WinRMListener" ] @@ -146152,7 +146152,7 @@ "Microsoft.Azure.Management.Compute.Models.WinRMListener": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocol": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", "CertificateUrl": "System.String" @@ -146203,7 +146203,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ProtocolTypes" ] @@ -146211,7 +146211,7 @@ "Microsoft.Azure.Management.Compute.Models.ProtocolTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -146298,7 +146298,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent" ] @@ -146306,7 +146306,7 @@ "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ComponentName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", "PassName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", @@ -146367,7 +146367,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ComponentNames" ] @@ -146375,7 +146375,7 @@ "Microsoft.Azure.Management.Compute.Models.ComponentNames": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ComponentNames", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -146462,7 +146462,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PassNames" ] @@ -146470,7 +146470,7 @@ "Microsoft.Azure.Management.Compute.Models.PassNames": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PassNames", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -146557,7 +146557,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SettingNames" ] @@ -146565,7 +146565,7 @@ "Microsoft.Azure.Management.Compute.Models.SettingNames": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SettingNames", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -146652,7 +146652,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup" ] @@ -146660,7 +146660,7 @@ "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", "VaultCertificates": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]" @@ -146711,7 +146711,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VaultCertificate" ] @@ -146719,7 +146719,7 @@ "Microsoft.Azure.Management.Compute.Models.VaultCertificate": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertificateUrl": "System.String", "CertificateStore": "System.String" @@ -146770,7 +146770,7 @@ "Microsoft.Azure.Management.Compute.Models.Placement": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.Placement", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Placement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Placement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IncludeZones": "System.Collections.Generic.IList`1[System.String]", "ExcludeZones": "System.Collections.Generic.IList`1[System.String]", @@ -146826,7 +146826,7 @@ "Microsoft.Azure.Management.Compute.Models.Plan": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.Plan", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Plan, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Plan, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Publisher": "System.String", @@ -146887,7 +146887,7 @@ "Microsoft.Azure.Management.Compute.Models.SecurityProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SecurityProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionIdentity": "Microsoft.Azure.Management.Compute.Models.EncryptionIdentity", "ProxyAgentSettings": "Microsoft.Azure.Management.Compute.Models.ProxyAgentSettings", @@ -146953,7 +146953,7 @@ "Microsoft.Azure.Management.Compute.Models.EncryptionIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentityResourceId": "System.String" }, @@ -146999,7 +146999,7 @@ "Microsoft.Azure.Management.Compute.Models.ProxyAgentSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ProxyAgentSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProxyAgentSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProxyAgentSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WireServer": "Microsoft.Azure.Management.Compute.Models.HostEndpointSettings", "Imds": "Microsoft.Azure.Management.Compute.Models.HostEndpointSettings", @@ -147065,7 +147065,7 @@ "Microsoft.Azure.Management.Compute.Models.HostEndpointSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.HostEndpointSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HostEndpointSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HostEndpointSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Mode": "System.String", "InVMAccessControlProfileReferenceId": "System.String" @@ -147116,7 +147116,7 @@ "Microsoft.Azure.Management.Compute.Models.UefiSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UefiSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UefiSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UefiSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecureBootEnabled": "System.Nullable`1[System.Boolean]", "VTpmEnabled": "System.Nullable`1[System.Boolean]" @@ -147167,7 +147167,7 @@ "Microsoft.Azure.Management.Compute.Models.StorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.StorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", "OsDisk": "Microsoft.Azure.Management.Compute.Models.OSDisk", @@ -147237,7 +147237,7 @@ "Microsoft.Azure.Management.Compute.Models.ImageReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Offer": "System.String", @@ -147318,7 +147318,7 @@ "Microsoft.Azure.Management.Compute.Models.OSDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", @@ -147423,7 +147423,7 @@ "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Option": "System.String", "Placement": "System.String" @@ -147474,7 +147474,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference", "DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", @@ -147534,7 +147534,7 @@ "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", "KeyUrl": "System.String" @@ -147589,7 +147589,7 @@ "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", "SecretUrl": "System.String" @@ -147644,7 +147644,7 @@ "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "SecurityProfile": "Microsoft.Azure.Management.Compute.Models.VMDiskSecurityProfile", @@ -147705,7 +147705,7 @@ "Microsoft.Azure.Management.Compute.Models.VMDiskSecurityProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VMDiskSecurityProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VMDiskSecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VMDiskSecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "SecurityEncryptionType": "System.String" @@ -147756,7 +147756,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Uri": "System.String" }, @@ -147802,7 +147802,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ] @@ -147810,7 +147810,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DataDisk" ] @@ -147818,7 +147818,7 @@ "Microsoft.Azure.Management.Compute.Models.DataDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceResource": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", @@ -147938,7 +147938,7 @@ "Microsoft.Azure.Management.Compute.Models.ApiEntityReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -147992,7 +147992,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", @@ -148053,7 +148053,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue" @@ -148062,7 +148062,7 @@ "Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -148113,7 +148113,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ] @@ -148121,7 +148121,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -148208,7 +148208,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -148334,7 +148334,7 @@ "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "SerialConsoleLogBlobUri": "System.String", @@ -148390,7 +148390,7 @@ "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Level": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes]", "Time": "System.Nullable`1[System.DateTime]", @@ -148456,7 +148456,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes" ] @@ -148464,7 +148464,7 @@ "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -148564,7 +148564,7 @@ "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastOperationResultCode": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]", "IsCustomerInitiatedMaintenanceAllowed": "System.Nullable`1[System.Boolean]", @@ -148640,7 +148640,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes" ] @@ -148648,7 +148648,7 @@ "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -148735,7 +148735,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "ExtensionHandlers": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]", @@ -148791,7 +148791,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus" ] @@ -148799,7 +148799,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView" ] @@ -148807,7 +148807,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "TypeHandlerVersion": "System.String", @@ -148863,7 +148863,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus" }, @@ -148909,7 +148909,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachinePatchStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePatchStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePatchStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachinePatchStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePatchSummary": "Microsoft.Azure.Management.Compute.Models.AvailablePatchSummary", "LastPatchInstallationSummary": "Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary", @@ -148965,7 +148965,7 @@ "Microsoft.Azure.Management.Compute.Models.AvailablePatchSummary": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AvailablePatchSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AvailablePatchSummary, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AvailablePatchSummary, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "RebootPending": "System.Nullable`1[System.Boolean]", @@ -149046,7 +149046,7 @@ "Microsoft.Azure.Management.Compute.Models.ApiError": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ApiError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiError, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiError, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Innererror": "Microsoft.Azure.Management.Compute.Models.InnerError", "Details": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]", @@ -149112,7 +149112,7 @@ "Microsoft.Azure.Management.Compute.Models.InnerError": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.InnerError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InnerError, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InnerError, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exceptiontype": "System.String", "Errordetail": "System.String" @@ -149163,7 +149163,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ApiErrorBase" ] @@ -149171,7 +149171,7 @@ "Microsoft.Azure.Management.Compute.Models.ApiErrorBase": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Target": "System.String", @@ -149227,7 +149227,7 @@ "Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "MaintenanceWindowExceeded": "System.Nullable`1[System.Boolean]", @@ -149323,7 +149323,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DiskInstanceView" ] @@ -149331,7 +149331,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -149387,7 +149387,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings" ] @@ -149395,7 +149395,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView" ] @@ -149403,7 +149403,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.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]", @@ -149469,7 +149469,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension" ] @@ -149477,7 +149477,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtectedSettingsFromKeyVault": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", @@ -149622,7 +149622,7 @@ "Microsoft.Azure.Management.Compute.Models.Sku": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.Sku", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Sku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Sku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.Nullable`1[System.Int64]", "Tier": "System.String", @@ -149678,7 +149678,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -149799,7 +149799,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]" }, @@ -149845,7 +149845,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration" ] @@ -149853,7 +149853,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", "DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings", @@ -150053,7 +150053,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsServers": "System.Collections.Generic.IList`1[System.String]" }, @@ -150099,7 +150099,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration" ] @@ -150107,7 +150107,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", @@ -150243,7 +150243,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.PublicIPAddressSku", "PublicIPPrefix": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -150328,7 +150328,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DomainNameLabel": "System.String", "DomainNameLabelScope": "System.String" @@ -150383,7 +150383,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag" ] @@ -150391,7 +150391,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -150442,7 +150442,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtectFromScaleIn": "System.Nullable`1[System.Boolean]", "ProtectFromScaleSetActions": "System.Nullable`1[System.Boolean]" @@ -150501,7 +150501,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile", "ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile", @@ -150553,7 +150553,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]" }, @@ -150590,7 +150590,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension" ] @@ -150598,7 +150598,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]", "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", @@ -150646,7 +150646,7 @@ "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsImageNotificationProfile": "Microsoft.Azure.Management.Compute.Models.OSImageNotificationProfile", "TerminateNotificationProfile": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile" @@ -150697,7 +150697,7 @@ "Microsoft.Azure.Management.Compute.Models.OSImageNotificationProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OSImageNotificationProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSImageNotificationProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSImageNotificationProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Nullable`1[System.Boolean]", "NotBeforeTimeout": "System.String" @@ -150748,7 +150748,7 @@ "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enable": "System.Nullable`1[System.Boolean]", "NotBeforeTimeout": "System.String" @@ -150799,7 +150799,7 @@ "Microsoft.Azure.Management.Compute.Models.SecurityPostureReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SecurityPostureReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SecurityPostureReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SecurityPostureReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExcludeExtensions": "System.Collections.Generic.IList`1[System.String]", "IsOverridable": "System.Nullable`1[System.Boolean]", @@ -150859,7 +150859,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HealthProbe": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]", @@ -150915,7 +150915,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", @@ -151001,7 +151001,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", "OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", @@ -151066,7 +151066,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", "Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", @@ -151166,7 +151166,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "SecurityProfile": "Microsoft.Azure.Management.Compute.Models.VMDiskSecurityProfile", @@ -151222,7 +151222,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk" ] @@ -151230,7 +151230,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", "Lun": "System.Int32", @@ -151325,7 +151325,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String" @@ -151372,7 +151372,7 @@ "Microsoft.Azure.Management.Compute.Models.AutomaticRepairsPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticRepairsPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticRepairsPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticRepairsPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "GracePeriod": "System.String", @@ -151428,7 +151428,7 @@ "Microsoft.Azure.Management.Compute.Models.PriorityMixPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PriorityMixPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PriorityMixPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PriorityMixPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BaseRegularPriorityCount": "System.Nullable`1[System.Int32]", "RegularPriorityPercentageAboveBase": "System.Nullable`1[System.Int32]" @@ -151483,7 +151483,7 @@ "Microsoft.Azure.Management.Compute.Models.ResiliencyPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResiliencyPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResiliencyPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResiliencyPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticZoneRebalancingPolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticZoneRebalancingPolicy", "ResilientVMCreationPolicy": "Microsoft.Azure.Management.Compute.Models.ResilientVMCreationPolicy", @@ -151539,7 +151539,7 @@ "Microsoft.Azure.Management.Compute.Models.AutomaticZoneRebalancingPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticZoneRebalancingPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticZoneRebalancingPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticZoneRebalancingPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "RebalanceStrategy": "System.String", @@ -151595,7 +151595,7 @@ "Microsoft.Azure.Management.Compute.Models.ResilientVMCreationPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResilientVMCreationPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResilientVMCreationPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResilientVMCreationPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]" }, @@ -151641,7 +151641,7 @@ "Microsoft.Azure.Management.Compute.Models.ResilientVMDeletionPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResilientVMDeletionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResilientVMDeletionPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResilientVMDeletionPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]" }, @@ -151687,7 +151687,7 @@ "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.IList`1[System.String]", "ForceDeletion": "System.Nullable`1[System.Boolean]", @@ -151743,7 +151743,7 @@ "Microsoft.Azure.Management.Compute.Models.SkuProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SkuProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SkuProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SkuProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmSizes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize]", "AllocationStrategy": "System.String" @@ -151794,7 +151794,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize" ] @@ -151802,7 +151802,7 @@ "Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SkuProfileVMSize, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rank": "System.Nullable`1[System.Int32]", "Name": "System.String" @@ -151857,7 +151857,7 @@ "Microsoft.Azure.Management.Compute.Models.SpotRestorePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SpotRestorePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SpotRestorePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SpotRestorePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "RestoreTimeout": "System.String" @@ -151908,7 +151908,7 @@ "Microsoft.Azure.Management.Compute.Models.UpgradePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticOSUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy", "RollingUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", @@ -151968,7 +151968,7 @@ "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableAutomaticOSUpgrade": "System.Nullable`1[System.Boolean]", "DisableAutomaticRollback": "System.Nullable`1[System.Boolean]", @@ -152029,7 +152029,7 @@ "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableCrossZoneUpgrade": "System.Nullable`1[System.Boolean]", "PrioritizeUnhealthyInstances": "System.Nullable`1[System.Boolean]", @@ -152114,7 +152114,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.UpgradeMode" ] @@ -152122,7 +152122,7 @@ "Microsoft.Azure.Management.Compute.Models.UpgradeMode": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -152209,7 +152209,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", @@ -152270,7 +152270,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView", "Source": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource", @@ -152322,7 +152322,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -152403,7 +152403,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScriptUriManagedIdentity": "Microsoft.Azure.Management.Compute.Models.RunCommandManagedIdentity", "Script": "System.String", @@ -152464,7 +152464,7 @@ "Microsoft.Azure.Management.Compute.Models.RunCommandManagedIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RunCommandManagedIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandManagedIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandManagedIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientId": "System.String", "ObjectId": "System.String" @@ -152515,7 +152515,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter" ] @@ -152523,7 +152523,7 @@ "Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -152578,7 +152578,7 @@ "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "System.String" }, @@ -152624,7 +152624,7 @@ "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UtilizationInfo": "Microsoft.Azure.Management.Compute.Models.CapacityReservationUtilization", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]" @@ -152675,7 +152675,7 @@ "Microsoft.Azure.Management.Compute.Models.CapacityReservationUtilization": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CapacityReservationUtilization", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationUtilization, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationUtilization, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualMachinesAllocated": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]", "CurrentCapacity": "System.Nullable`1[System.Int32]" @@ -152735,7 +152735,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly" ] @@ -152743,7 +152743,7 @@ "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -152789,7 +152789,7 @@ "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CapacityReservations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName]", "SharedSubscriptionIds": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]" @@ -152840,7 +152840,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName" ] @@ -152848,7 +152848,7 @@ "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UtilizationInfo": "Microsoft.Azure.Management.Compute.Models.CapacityReservationUtilization", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -152904,7 +152904,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSharingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubscriptionIds": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]" }, @@ -152950,7 +152950,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScaleType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType]", "Minimum": "System.Nullable`1[System.Int64]", @@ -153011,7 +153011,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType" ] @@ -153019,7 +153019,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -153106,7 +153106,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities" ] @@ -153114,7 +153114,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -153165,7 +153165,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts" ] @@ -153173,7 +153173,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Quantity": "System.Nullable`1[System.Int64]", "MeterID": "System.String", @@ -153229,7 +153229,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo" ] @@ -153237,7 +153237,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ZoneDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails]", "Zones": "System.Collections.Generic.IList`1[System.String]", @@ -153303,7 +153303,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails" ] @@ -153311,7 +153311,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]", "Name": "System.Collections.Generic.IList`1[System.String]" @@ -153362,7 +153362,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions" ] @@ -153370,7 +153370,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestrictionInfo": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo", "Values": "System.Collections.Generic.IList`1[System.String]", @@ -153431,7 +153431,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Locations": "System.Collections.Generic.IList`1[System.String]", "Zones": "System.Collections.Generic.IList`1[System.String]" @@ -153482,7 +153482,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode" ] @@ -153490,7 +153490,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -153577,7 +153577,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType" ] @@ -153585,7 +153585,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -153672,7 +153672,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -153712,7 +153712,7 @@ "Microsoft.Azure.Management.Compute.Models.CreationData": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CreationData", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CreationData, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CreationData, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", "GalleryImageReference": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", @@ -153822,7 +153822,7 @@ "Microsoft.Azure.Management.Compute.Models.ImageDiskReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]", "Id": "System.String", @@ -153896,7 +153896,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskSecurityProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskSecurityProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskSecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskSecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityType": "System.String", "SecureVMDiskEncryptionSetId": "System.String" @@ -153947,7 +153947,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskSku": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskSku", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskSku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskSku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -153998,7 +153998,7 @@ "Microsoft.Azure.Management.Compute.Models.Encryption": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.Encryption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Encryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Encryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSetId": "System.String", "Type": "System.String" @@ -154049,7 +154049,7 @@ "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "EncryptionSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement]", @@ -154109,7 +154109,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement" ] @@ -154117,7 +154117,7 @@ "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", "DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference" @@ -154172,7 +154172,7 @@ "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "KeyUrl": "System.String" @@ -154227,7 +154227,7 @@ "Microsoft.Azure.Management.Compute.Models.SourceVault": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SourceVault", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SourceVault, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SourceVault, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -154273,7 +154273,7 @@ "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", "SecretUrl": "System.String" @@ -154328,7 +154328,7 @@ "Microsoft.Azure.Management.Compute.Models.SupportedCapabilities": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SupportedCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SupportedCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SupportedCapabilities, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AcceleratedNetwork": "System.Nullable`1[System.Boolean]", "DiskControllerTypes": "System.String", @@ -154397,7 +154397,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ShareInfoElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ShareInfoElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ShareInfoElement" ] @@ -154405,7 +154405,7 @@ "Microsoft.Azure.Management.Compute.Models.ShareInfoElement": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ShareInfoElement", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ShareInfoElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ShareInfoElement, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmUri": "System.String" }, @@ -154451,7 +154451,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection" ] @@ -154459,7 +154459,7 @@ "Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Management.Compute.Models.PrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Management.Compute.Models.PrivateLinkServiceConnectionState", @@ -154534,7 +154534,7 @@ "Microsoft.Azure.Management.Compute.Models.PrivateEndpoint": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PrivateEndpoint, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PrivateEndpoint, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -154580,7 +154580,7 @@ "Microsoft.Azure.Management.Compute.Models.PrivateLinkServiceConnectionState": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PrivateLinkServiceConnectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "System.String", "Description": "System.String", @@ -154636,7 +154636,7 @@ "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue]", "Type": "System.String", @@ -154697,7 +154697,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference" ] @@ -154705,7 +154705,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UniqueName": "System.String" }, @@ -154751,7 +154751,7 @@ "Microsoft.Azure.Management.Compute.Models.SharingProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SharingProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SharingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SharingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CommunityGalleryInfo": "Microsoft.Azure.Management.Compute.Models.CommunityGalleryInfo", "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SharingProfileGroup]", @@ -154807,7 +154807,7 @@ "Microsoft.Azure.Management.Compute.Models.CommunityGalleryInfo": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.CommunityGalleryInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CommunityGalleryInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CommunityGalleryInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicNames": "System.Collections.Generic.IList`1[System.String]", "CommunityGalleryEnabled": "System.Nullable`1[System.Boolean]", @@ -154878,7 +154878,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SharingProfileGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SharingProfileGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SharingProfileGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SharingProfileGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SharingProfileGroup" ] @@ -154886,7 +154886,7 @@ "Microsoft.Azure.Management.Compute.Models.SharingProfileGroup": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SharingProfileGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SharingProfileGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SharingProfileGroup, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ids": "System.Collections.Generic.IList`1[System.String]", "Type": "System.String" @@ -154937,7 +154937,7 @@ "Microsoft.Azure.Management.Compute.Models.Disallowed": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.Disallowed", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Disallowed, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Disallowed, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskTypes": "System.Collections.Generic.IList`1[System.String]" }, @@ -154983,7 +154983,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Offer": "System.String", @@ -155043,7 +155043,7 @@ "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Publisher": "System.String", @@ -155099,7 +155099,7 @@ "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VCPUs": "Microsoft.Azure.Management.Compute.Models.ResourceRange", "Memory": "Microsoft.Azure.Management.Compute.Models.ResourceRange" @@ -155150,7 +155150,7 @@ "Microsoft.Azure.Management.Compute.Models.ResourceRange": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ResourceRange", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceRange, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceRange, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Min": "System.Nullable`1[System.Int32]", "Max": "System.Nullable`1[System.Int32]" @@ -155201,7 +155201,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryImageFeature]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryImageFeature]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryImageFeature, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryImageFeature, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature" ] @@ -155209,7 +155209,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageFeature, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String", @@ -155265,7 +155265,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetExtendedLocations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation]", "TargetRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.TargetRegion]", @@ -155346,7 +155346,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation" ] @@ -155354,7 +155354,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryTargetExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.EncryptionImages", "ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.GalleryExtendedLocation", @@ -155420,7 +155420,7 @@ "Microsoft.Azure.Management.Compute.Models.EncryptionImages": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionImages", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionImages, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionImages, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption", "DataDiskImages": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption]" @@ -155471,7 +155471,7 @@ "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityProfile": "Microsoft.Azure.Management.Compute.Models.OSDiskImageSecurityProfile", "DiskEncryptionSetId": "System.String" @@ -155522,7 +155522,7 @@ "Microsoft.Azure.Management.Compute.Models.OSDiskImageSecurityProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImageSecurityProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImageSecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImageSecurityProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConfidentialVMEncryptionType": "System.String", "SecureVMDiskEncryptionSetId": "System.String" @@ -155573,7 +155573,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption" ] @@ -155581,7 +155581,7 @@ "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Int32", "DiskEncryptionSetId": "System.String" @@ -155636,7 +155636,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryExtendedLocation": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryExtendedLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryExtendedLocation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String" @@ -155687,7 +155687,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.TargetRegion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.TargetRegion]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.TargetRegion" ] @@ -155695,7 +155695,7 @@ "Microsoft.Azure.Management.Compute.Models.TargetRegion": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.TargetRegion", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.Compute.Models.EncryptionImages", "AdditionalReplicaSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet]", @@ -155770,7 +155770,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet" ] @@ -155778,7 +155778,7 @@ "Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalReplicaSet, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegionalReplicaCount": "System.Nullable`1[System.Int32]", "StorageAccountType": "System.String" @@ -155829,7 +155829,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionSafetyProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyViolations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PolicyViolation]", "ReportedForPolicyViolation": "System.Nullable`1[System.Boolean]", @@ -155890,7 +155890,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PolicyViolation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PolicyViolation]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.PolicyViolation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.PolicyViolation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PolicyViolation" ] @@ -155898,7 +155898,7 @@ "Microsoft.Azure.Management.Compute.Models.PolicyViolation": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PolicyViolation", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PolicyViolation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PolicyViolation, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Category": "System.String", "Details": "System.String" @@ -155949,7 +155949,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionFullSource", "OsDiskImage": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage", @@ -156005,7 +156005,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionFullSource": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionFullSource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionFullSource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionFullSource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CommunityGalleryImageId": "System.String", "VirtualMachineId": "System.String", @@ -156061,7 +156061,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource", "HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]", @@ -156117,7 +156117,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Uri": "System.String", "StorageAccountId": "System.String", @@ -156173,7 +156173,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.HostCaching" ] @@ -156181,7 +156181,7 @@ "Microsoft.Azure.Management.Compute.Models.HostCaching": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.HostCaching", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -156268,7 +156268,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage" ] @@ -156276,7 +156276,7 @@ "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource", "Lun": "System.Int32", @@ -156341,7 +156341,7 @@ "Microsoft.Azure.Management.Compute.Models.ReplicationStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ReplicationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Summary": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus]", "AggregatedState": "System.String" @@ -156392,7 +156392,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus" ] @@ -156400,7 +156400,7 @@ "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Progress": "System.Nullable`1[System.Int32]", "Region": "System.String", @@ -156461,7 +156461,7 @@ "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableCapacity": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -156517,7 +156517,7 @@ "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllocatableVMs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM]" }, @@ -156563,7 +156563,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM" ] @@ -156571,7 +156571,7 @@ "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Count": "System.Nullable`1[System.Double]", "VmSize": "System.String" @@ -156622,7 +156622,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes" ] @@ -156630,7 +156630,7 @@ "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -156717,7 +156717,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName]" }, @@ -156754,7 +156754,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName" ] @@ -156762,7 +156762,7 @@ "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableCapacity": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -156823,7 +156823,7 @@ "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmSizes": "System.Collections.Generic.IList`1[System.String]" }, @@ -156869,7 +156869,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus" ] @@ -156877,7 +156877,7 @@ "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "Id": "System.String" @@ -156937,7 +156937,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskRestorePoints": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]" @@ -156988,7 +156988,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView" ] @@ -156996,7 +156996,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationStatus": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointReplicationStatus", "Id": "System.String" @@ -157047,7 +157047,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskRestorePointReplicationStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointReplicationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointReplicationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", "CompletionPercent": "System.Nullable`1[System.Int32]" @@ -157098,7 +157098,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointSourceMetadata": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceMetadata, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceMetadata, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", "HardwareProfile": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", @@ -157193,7 +157193,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMStorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMStorageProfile, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsDisk": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMOSDisk", "DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk]", @@ -157253,7 +157253,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMOSDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMOSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMOSDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", "DiskRestorePoint": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointAttributes", @@ -157338,7 +157338,7 @@ "Microsoft.Azure.Management.Compute.Models.DiskRestorePointAttributes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointAttributes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointAttributes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointAttributes, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceDiskRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "Encryption": "Microsoft.Azure.Management.Compute.Models.RestorePointEncryption", @@ -157394,7 +157394,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointEncryption": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointEncryption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters", "Type": "System.String" @@ -157445,7 +157445,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk" ] @@ -157453,7 +157453,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointSourceVMDataDisk, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskRestorePoint": "Microsoft.Azure.Management.Compute.Models.DiskRestorePointAttributes", "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", @@ -157529,7 +157529,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiEntityReference]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiEntityReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.ApiEntityReference" ] @@ -157537,7 +157537,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Location": "System.String", "Id": "System.String" @@ -157588,7 +157588,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePoint]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RestorePoint, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RestorePoint, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RestorePoint" ] @@ -157596,7 +157596,7 @@ "Microsoft.Azure.Management.Compute.Models.RestorePoint": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RestorePoint", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePoint, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RestorePoint, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView", @@ -157691,7 +157691,7 @@ "Microsoft.Azure.Management.Compute.Models.SnapshotSku": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.SnapshotSku", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SnapshotSku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SnapshotSku, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -157760,7 +157760,7 @@ "Microsoft.Azure.Management.Compute.Models.ImageDeprecationStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.ImageDeprecationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDeprecationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDeprecationStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AlternativeOption": "Microsoft.Azure.Management.Compute.Models.AlternativeOption", "ScheduledDeprecationTime": "System.Nullable`1[System.DateTime]", @@ -157816,7 +157816,7 @@ "Microsoft.Azure.Management.Compute.Models.AlternativeOption": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AlternativeOption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AlternativeOption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AlternativeOption, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String", "Value": "System.String" @@ -157867,7 +157867,7 @@ "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutomaticOSUpgradeSupported": "System.Boolean" }, @@ -157917,7 +157917,7 @@ "Microsoft.Azure.Management.Compute.Models.OSDiskImage": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperatingSystem": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" }, @@ -157967,7 +157967,7 @@ "Microsoft.Azure.Management.Compute.Models.PurchasePlan": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PurchasePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PurchasePlan, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PurchasePlan, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Publisher": "System.String", "Name": "System.String", @@ -158032,7 +158032,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DataDiskImage" ] @@ -158040,7 +158040,7 @@ "Microsoft.Azure.Management.Compute.Models.DataDiskImage": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.DataDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Lun": "System.Nullable`1[System.Int32]" }, @@ -158086,7 +158086,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition" ] @@ -158094,7 +158094,7 @@ "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Required": "System.Nullable`1[System.Boolean]", "Name": "System.String", @@ -158159,7 +158159,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultURL": "System.String", "KeyEncryptionKeyURL": "System.String", @@ -158202,7 +158202,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount" ] @@ -158210,7 +158210,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Count": "System.Nullable`1[System.Int32]", "Code": "System.String" @@ -158261,7 +158261,7 @@ "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SuccessfulInstanceCount": "System.Nullable`1[System.Int32]", "FailedInstanceCount": "System.Nullable`1[System.Int32]", @@ -158322,7 +158322,7 @@ "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastAction": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType]", "Code": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode]", @@ -158383,7 +158383,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType" ] @@ -158391,7 +158391,7 @@ "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -158478,7 +158478,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode" ] @@ -158486,7 +158486,7 @@ "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -158573,7 +158573,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScaleType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType]", "Minimum": "System.Nullable`1[System.Int64]", @@ -158634,7 +158634,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType" ] @@ -158642,7 +158642,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -158729,7 +158729,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -158816,7 +158816,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.DiskInstanceView" ] @@ -158824,7 +158824,7 @@ "Microsoft.Azure.Management.Compute.Models.UsageName": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.UsageName", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UsageName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UsageName, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.String", "LocalizedValue": "System.String" @@ -158875,7 +158875,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail" ] @@ -158883,7 +158883,7 @@ "Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Classifications": "System.Collections.Generic.IList`1[System.String]", "PatchId": "System.String", @@ -158954,7 +158954,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties" ] @@ -158962,7 +158962,7 @@ "Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties, Microsoft.Azure.PowerShell.Compute.Management.Sdk, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Classifications": "System.Collections.Generic.IList`1[System.String]", "PublishedDate": "System.Nullable`1[System.DateTime]", @@ -159069,7 +159069,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential" ] @@ -159077,7 +159077,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CredentialName": "System.String", "KeyVaultName": "System.String" @@ -159115,7 +159115,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult" ] @@ -159123,7 +159123,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Result": "System.Boolean", "PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", @@ -159192,7 +159192,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=9.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceResource": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ComputeFleet.json b/tools/Tools.Common/SerializedCmdlets/Az.ComputeFleet.json index 76027b50118d..8bff1dfe8dd0 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.ComputeFleet.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.ComputeFleet.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.ComputeFleet", - "ModuleVersion": "0.1.0", + "ModuleVersion": "0.1.1", "Cmdlets": [ { "VerbName": "Get", @@ -92,7 +92,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -101,7 +101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -110,7 +110,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -140,7 +140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -149,7 +149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -178,7 +178,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -187,7 +187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -196,7 +196,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -214,7 +226,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -229,7 +241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -244,7 +256,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -264,7 +276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -279,7 +291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -326,7 +338,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -341,7 +353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -356,7 +368,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -376,7 +406,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -391,7 +421,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -411,7 +441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -426,7 +456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -473,7 +503,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -488,7 +518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -503,7 +533,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -523,7 +571,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -543,7 +591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -558,7 +606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -605,7 +653,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -620,7 +668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -635,7 +683,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -681,7 +747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -696,7 +762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -743,7 +809,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -758,7 +824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -773,7 +839,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -797,7 +881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -812,7 +896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -859,7 +943,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -874,7 +958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -889,7 +973,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -944,7 +1046,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -953,7 +1055,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -962,7 +1064,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -976,7 +1078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -985,7 +1087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1014,7 +1116,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1023,7 +1125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1032,7 +1134,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1050,7 +1164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1065,7 +1179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1080,7 +1194,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1100,7 +1214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1115,7 +1229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1162,7 +1276,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1177,7 +1291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1192,7 +1306,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1295,7 +1427,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1304,7 +1436,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1313,7 +1445,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1411,7 +1543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1420,7 +1552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1429,7 +1561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1458,7 +1590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1467,7 +1599,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1476,7 +1608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1485,7 +1617,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1503,7 +1647,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1518,7 +1662,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1533,7 +1677,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1627,7 +1771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1642,7 +1786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1657,7 +1801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1704,7 +1848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1719,7 +1863,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1734,7 +1878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1749,7 +1893,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1870,7 +2032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1885,7 +2047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1900,7 +2062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1947,7 +2109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1962,7 +2124,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1977,7 +2139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1992,7 +2154,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2091,7 +2271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2106,7 +2286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2121,7 +2301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2168,7 +2348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2183,7 +2363,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2198,7 +2378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2213,7 +2393,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2240,7 +2438,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -2256,7 +2454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2265,7 +2463,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2274,7 +2472,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2303,7 +2501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2312,7 +2510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2321,7 +2519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2350,7 +2548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2359,7 +2557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2368,7 +2566,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2377,7 +2575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2386,7 +2584,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2404,7 +2614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2419,7 +2629,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2434,7 +2644,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2453,7 +2663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2468,7 +2678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2483,7 +2693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2530,7 +2740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2545,7 +2755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2560,7 +2770,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2575,7 +2785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2590,7 +2800,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2636,7 +2864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2651,7 +2879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2666,7 +2894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2713,7 +2941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2728,7 +2956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2743,7 +2971,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2758,7 +2986,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2773,7 +3001,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2797,7 +3043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2812,7 +3058,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2827,7 +3073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2874,7 +3120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2889,7 +3135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2904,7 +3150,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2919,7 +3165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2934,7 +3180,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3037,7 +3301,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3046,7 +3310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3055,7 +3319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3153,7 +3417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3162,7 +3426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3171,7 +3435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3200,7 +3464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3209,7 +3473,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3218,7 +3482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3227,7 +3491,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3245,7 +3521,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3260,7 +3536,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3275,7 +3551,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3369,7 +3645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3384,7 +3660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3399,7 +3675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3446,7 +3722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3461,7 +3737,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3476,7 +3752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3491,7 +3767,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3612,7 +3906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3627,7 +3921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3642,7 +3936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3689,7 +3983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3704,7 +3998,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3719,7 +4013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3734,7 +4028,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3833,7 +4145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3848,7 +4160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3863,7 +4175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3910,7 +4222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3925,7 +4237,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3940,7 +4252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3955,7 +4267,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4103,7 +4433,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IAdditionalUnattendContent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IAdditionalUnattendContent]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IAdditionalUnattendContent, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IAdditionalUnattendContent, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IAdditionalUnattendContent" ] @@ -4122,12 +4452,12 @@ "System.Security.SecureString": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISshPublicKey]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISshPublicKey]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISshPublicKey, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISshPublicKey, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISshPublicKey" ] @@ -4144,7 +4474,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultSecretGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultSecretGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultSecretGroup, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultSecretGroup, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultSecretGroup" ] @@ -4161,7 +4491,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultCertificate, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultCertificate, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVaultCertificate" ] @@ -4178,7 +4508,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetDataDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetDataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetDataDisk, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetDataDisk, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetDataDisk" ] @@ -4206,7 +4536,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -4214,7 +4544,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -4222,7 +4552,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -4230,7 +4560,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetExtension]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetExtension]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetExtension, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetExtension, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetExtension" ] @@ -4271,7 +4601,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -4279,7 +4609,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetNetworkConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetNetworkConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetNetworkConfiguration, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetNetworkConfiguration, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetNetworkConfiguration" ] @@ -4306,7 +4636,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPConfiguration, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPConfiguration, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPConfiguration" ] @@ -4339,7 +4669,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISubResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISubResource]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISubResource, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISubResource, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ISubResource" ] @@ -4355,7 +4685,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPTag, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPTag, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVirtualMachineScaleSetIPTag" ] @@ -4372,7 +4702,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMGalleryApplication]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMGalleryApplication]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMGalleryApplication, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMGalleryApplication, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMGalleryApplication" ] @@ -4393,7 +4723,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IWinRmListener]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IWinRmListener]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IWinRmListener, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IWinRmListener, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IWinRmListener" ] @@ -4410,7 +4740,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -4418,7 +4748,7 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IUserAssignedIdentities": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models", @@ -4428,7 +4758,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ILocationProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ILocationProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ILocationProfile, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ILocationProfile, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.ILocationProfile" ] @@ -4445,7 +4775,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMSizeProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMSizeProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMSizeProfile, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMSizeProfile, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IVMSizeProfile" ] @@ -4462,7 +4792,7 @@ "System.Nullable`1[System.Double]": { "Namespace": "System", "Name": "System.Nullable`1[System.Double]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Double" ] @@ -4470,7 +4800,7 @@ "System.Nullable`1[System.Single]": { "Namespace": "System", "Name": "System.Nullable`1[System.Single]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Single" ] @@ -4612,17 +4942,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -4630,38 +4960,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IApiErrorBase]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IApiErrorBase]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IApiErrorBase, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IApiErrorBase, Az.ComputeFleet.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeFleet.Models.IApiErrorBase" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ComputeSchedule.json b/tools/Tools.Common/SerializedCmdlets/Az.ComputeSchedule.json index 13513114f212..2014c0b916ae 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.ComputeSchedule.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.ComputeSchedule.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.ComputeSchedule", - "ModuleVersion": "0.1.0", + "ModuleVersion": "0.1.1", "Cmdlets": [ { "VerbName": "Get", @@ -32,7 +32,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -41,7 +41,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -51,7 +51,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -65,7 +65,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -74,7 +74,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -103,7 +103,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -112,7 +112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -121,7 +121,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -136,7 +148,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -151,7 +163,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -167,7 +179,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -187,7 +199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -202,7 +214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -249,7 +261,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -264,7 +276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -279,7 +291,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -322,7 +352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -331,7 +361,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -341,7 +371,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -350,7 +380,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -364,7 +394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -373,7 +403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -402,7 +432,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -411,7 +441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -420,7 +450,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -435,7 +477,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -450,7 +492,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -466,7 +508,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -481,7 +523,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -501,7 +543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -516,7 +558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -563,7 +605,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -578,7 +620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -593,7 +635,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -639,7 +699,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -648,7 +708,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -657,7 +717,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -666,7 +726,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -676,7 +736,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -685,7 +745,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -698,7 +758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -707,7 +767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -736,7 +796,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -745,7 +805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -754,7 +814,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -769,7 +841,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -784,7 +856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -799,7 +871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -814,7 +886,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -830,7 +902,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -845,7 +917,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -864,7 +936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -879,7 +951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -926,7 +998,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -941,7 +1013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -956,7 +1028,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1002,7 +1092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1011,7 +1101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1020,7 +1110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1029,7 +1119,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1039,7 +1129,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1048,7 +1138,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1061,7 +1151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1070,7 +1160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1099,7 +1189,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1108,7 +1198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1117,7 +1207,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1132,7 +1234,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1147,7 +1249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1162,7 +1264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1177,7 +1279,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1193,7 +1295,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1208,7 +1310,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1227,7 +1329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1242,7 +1344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1289,7 +1391,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1304,7 +1406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1319,7 +1421,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1365,7 +1485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1374,7 +1494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1383,7 +1503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1392,7 +1512,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1402,7 +1522,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1411,7 +1531,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1424,7 +1544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1433,7 +1553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1462,7 +1582,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1471,7 +1591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1480,7 +1600,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1495,7 +1627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1510,7 +1642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1525,7 +1657,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1540,7 +1672,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1556,7 +1688,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1571,7 +1703,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1590,7 +1722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1605,7 +1737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1652,7 +1784,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1667,7 +1799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1682,7 +1814,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1728,7 +1878,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1737,7 +1887,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1746,7 +1896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1755,7 +1905,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1764,7 +1914,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1774,7 +1924,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1783,7 +1933,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1792,7 +1942,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1801,7 +1951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1814,7 +1964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1823,7 +1973,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1852,7 +2002,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1861,7 +2011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1870,7 +2020,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1885,7 +2047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1900,7 +2062,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1915,7 +2077,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1930,7 +2092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1945,7 +2107,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1961,7 +2123,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1976,7 +2138,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1991,7 +2153,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2006,7 +2168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2025,7 +2187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2040,7 +2202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2087,7 +2249,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2102,7 +2264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2117,7 +2279,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2163,7 +2343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2172,7 +2352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2181,7 +2361,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2190,7 +2370,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2199,7 +2379,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2209,7 +2389,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2218,7 +2398,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2227,7 +2407,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2236,7 +2416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2249,7 +2429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2258,7 +2438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2287,7 +2467,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2296,7 +2476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2305,7 +2485,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2320,7 +2512,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2335,7 +2527,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2350,7 +2542,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2365,7 +2557,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2380,7 +2572,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2396,7 +2588,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2411,7 +2603,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2426,7 +2618,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2441,7 +2633,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2460,7 +2652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2475,7 +2667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2522,7 +2714,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2537,7 +2729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2552,7 +2744,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2598,7 +2808,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2607,7 +2817,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2616,7 +2826,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2625,7 +2835,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2634,7 +2844,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2644,7 +2854,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2653,7 +2863,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2662,7 +2872,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2671,7 +2881,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2684,7 +2894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2693,7 +2903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2722,7 +2932,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2731,7 +2941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2740,7 +2950,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2755,7 +2977,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2770,7 +2992,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2785,7 +3007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2800,7 +3022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2815,7 +3037,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2831,7 +3053,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2846,7 +3068,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2861,7 +3083,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2876,7 +3098,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2895,7 +3117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2910,7 +3132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2957,7 +3179,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2972,7 +3194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2987,7 +3209,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3030,7 +3270,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3039,7 +3279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3075,7 +3315,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3084,7 +3324,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3094,7 +3334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3103,7 +3343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3116,7 +3356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3125,7 +3365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3154,7 +3394,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3163,7 +3403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3172,7 +3412,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3187,7 +3439,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3202,7 +3454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3217,7 +3469,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3236,7 +3488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3251,7 +3503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3298,7 +3550,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3313,7 +3565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3328,7 +3580,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3348,7 +3618,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3363,7 +3633,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3378,7 +3648,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3397,7 +3667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3412,7 +3682,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3459,7 +3729,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3474,7 +3744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3489,7 +3759,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3509,7 +3797,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3524,7 +3812,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3539,7 +3827,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3554,7 +3842,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3574,7 +3862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3589,7 +3877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3636,7 +3924,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3651,7 +3939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3666,7 +3954,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3686,7 +3992,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3701,7 +4007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3739,7 +4045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3754,7 +4060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3801,7 +4107,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3816,7 +4122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3831,7 +4137,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3894,7 +4218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3909,7 +4233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3956,7 +4280,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3971,7 +4295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3986,7 +4310,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4010,7 +4352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4025,7 +4367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4072,7 +4414,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4087,7 +4429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4102,7 +4444,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4162,7 +4522,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorsResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorsResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorsResult, Az.ComputeSchedule.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorsResult, Az.ComputeSchedule.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorsResult" ] @@ -4184,7 +4544,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorDetails, Az.ComputeSchedule.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorDetails, Az.ComputeSchedule.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IOperationErrorDetails" ] @@ -4204,7 +4564,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -4212,7 +4572,7 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Runtime", @@ -4351,17 +4711,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -4369,38 +4729,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IResourceOperation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IResourceOperation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IResourceOperation, Az.ComputeSchedule.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IResourceOperation, Az.ComputeSchedule.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.ComputeSchedule.Models.IResourceOperation" ] @@ -4431,7 +4791,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -4439,7 +4799,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.CostManagement.json b/tools/Tools.Common/SerializedCmdlets/Az.CostManagement.json index 19b99415c150..d7dfc197cb19 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.CostManagement.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.CostManagement.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.CostManagement", - "ModuleVersion": "0.4.1", + "ModuleVersion": "0.4.2", "Cmdlets": [ { "VerbName": "Get", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.DataFactory.json b/tools/Tools.Common/SerializedCmdlets/Az.DataFactory.json index ba9ab4f58c7e..7a74f3b0dfad 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.DataFactory.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.DataFactory.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.DataFactory", - "ModuleVersion": "1.19.2", + "ModuleVersion": "1.19.3", "Cmdlets": [ { "VerbName": "Add", @@ -78,7 +78,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -316,7 +316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -591,7 +591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerName": "System.String", "Status": "System.String" @@ -658,7 +658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -838,7 +838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -1031,7 +1031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1297,7 +1297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutputDatasets": "System.Collections.Generic.IList`1[System.String]", "InputDatasets": "System.Collections.Generic.IList`1[System.String]", @@ -1377,7 +1377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1574,7 +1574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2367,7 +2367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability", "Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy", @@ -2429,7 +2429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2512,7 +2512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2765,7 +2765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -2833,7 +2833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2916,7 +2916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3169,7 +3169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Key1": "System.String", "Key2": "System.String" @@ -3228,7 +3228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3314,7 +3314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3567,7 +3567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties", "HubName": "System.String", @@ -3634,7 +3634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3772,7 +3772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3961,7 +3961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "LinkedServiceName": "System.String", @@ -4019,7 +4019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4102,7 +4102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4355,7 +4355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties", "PipelineName": "System.String", @@ -4422,7 +4422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4560,7 +4560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4749,7 +4749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataSliceEnd": "System.DateTime", @@ -4819,7 +4819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4911,7 +4911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5209,7 +5209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Start": "System.DateTime", "End": "System.DateTime", @@ -5281,7 +5281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5467,7 +5467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5716,7 +5716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -5981,7 +5981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ActivityRunStart": "System.Nullable`1[System.DateTime]", @@ -6103,7 +6103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -6256,7 +6256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -6543,7 +6543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -6633,7 +6633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -6826,7 +6826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -7023,7 +7023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CoreCount": "System.Nullable`1[System.Int32]", "TimeToLiveInMinutes": "System.Nullable`1[System.Int32]", @@ -7093,7 +7093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -7235,7 +7235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -7447,7 +7447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -7536,7 +7536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -7729,7 +7729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -7926,7 +7926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -7987,7 +7987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]", "DataFlowEnableCleanUp": "System.Nullable`1[System.Boolean]", @@ -8078,7 +8078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SelfContainedInteractiveAuthoringEnabled": "System.Nullable`1[System.Boolean]", "Name": "System.String", @@ -8140,7 +8140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SelfContainedInteractiveAuthoringEnabled": "System.Nullable`1[System.Boolean]", "AuthorizationType": "System.String", @@ -8257,7 +8257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -8570,7 +8570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -8664,7 +8664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -8762,7 +8762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -8981,7 +8981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -9109,7 +9109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]", "IntegrationRuntimeName": "System.String", @@ -9216,7 +9216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -9435,7 +9435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -9563,7 +9563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", "ResourceGroupName": "System.String", @@ -9633,7 +9633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -9782,7 +9782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -10137,7 +10137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -10246,7 +10246,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint" ] @@ -10304,7 +10304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -10523,7 +10523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -10651,7 +10651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -10739,7 +10739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -10932,7 +10932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -11129,7 +11129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -11218,7 +11218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -11411,7 +11411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -11608,7 +11608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -11683,7 +11683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -11797,7 +11797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -11889,7 +11889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -12285,7 +12285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -12374,7 +12374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -12567,7 +12567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -12764,7 +12764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12866,7 +12866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -12992,7 +12992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -13252,7 +13252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerName": "System.String", "Status": "System.String" @@ -13319,7 +13319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -13499,7 +13499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -13692,7 +13692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "Status": "System.String" @@ -13825,7 +13825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -14189,7 +14189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -14582,7 +14582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14801,7 +14801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14942,7 +14942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -15079,7 +15079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -15227,7 +15227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -15769,7 +15769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -15837,7 +15837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15886,7 +15886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -15964,7 +15964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16210,7 +16210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -16373,7 +16373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16756,7 +16756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability", "Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy", @@ -16818,7 +16818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16919,7 +16919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17275,7 +17275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17438,7 +17438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17920,7 +17920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -17988,7 +17988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18080,7 +18080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18378,7 +18378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Key1": "System.String", "Key2": "System.String" @@ -18437,7 +18437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18536,7 +18536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18846,7 +18846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties", "HubName": "System.String", @@ -18931,7 +18931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19099,7 +19099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19348,7 +19348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "LinkedServiceName": "System.String", @@ -19406,7 +19406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19507,7 +19507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19850,7 +19850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties", "PipelineName": "System.String", @@ -19917,7 +19917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20103,7 +20103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20352,7 +20352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -20472,7 +20472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -20842,7 +20842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -20998,7 +20998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -21236,7 +21236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -21424,7 +21424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21595,7 +21595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21776,7 +21776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -21944,7 +21944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22182,7 +22182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22274,7 +22274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22606,7 +22606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -22762,7 +22762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23009,7 +23009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23177,7 +23177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23436,7 +23436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23592,7 +23592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -23851,7 +23851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -24026,7 +24026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -24303,7 +24303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -24532,7 +24532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -24841,7 +24841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -25045,7 +25045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -25356,7 +25356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -25714,7 +25714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -25893,7 +25893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -26248,7 +26248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -26382,7 +26382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -26585,7 +26585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -26847,7 +26847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -27051,7 +27051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -27314,7 +27314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -27518,7 +27518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -27781,7 +27781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -28009,7 +28009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -28317,7 +28317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -28458,7 +28458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -28653,7 +28653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SasUri": "System.String", "StorageAccountName": "System.String", @@ -28711,7 +28711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -28812,7 +28812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -29155,7 +29155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -29223,7 +29223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -29315,7 +29315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -29638,7 +29638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -29875,7 +29875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -30241,7 +30241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -30468,7 +30468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -30799,7 +30799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -30968,7 +30968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -31017,7 +31017,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -31322,7 +31322,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -31683,7 +31683,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -32029,7 +32029,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -32299,7 +32299,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -32659,7 +32659,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -33034,7 +33034,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -33241,7 +33241,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -33324,7 +33324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -33506,7 +33506,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -33589,7 +33589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -33876,7 +33876,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -33959,7 +33959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -34231,7 +34231,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -34324,7 +34324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", "Name": "System.String", @@ -34789,7 +34789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -35256,7 +35256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -35350,7 +35350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -37310,7 +37310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -37924,7 +37924,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -38165,7 +38165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -38631,7 +38631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -39098,7 +39098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -39565,7 +39565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SessionId": "System.String", "Status": "System.String" @@ -39650,7 +39650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -39858,7 +39858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -40118,7 +40118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastOperation": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult", "ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]", @@ -40271,7 +40271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -40584,7 +40584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -40678,7 +40678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -40758,7 +40758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -40962,7 +40962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -41259,7 +41259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -41476,7 +41476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -41842,7 +41842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -42155,7 +42155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -42262,7 +42262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -42305,7 +42305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -42383,7 +42383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InvokedBy": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -42602,7 +42602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -42765,7 +42765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -42845,7 +42845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -43049,7 +43049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -43300,7 +43300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -43349,7 +43349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -43427,7 +43427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -43673,7 +43673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -43861,7 +43861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -44002,7 +44002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -44258,7 +44258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -44568,7 +44568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -44662,7 +44662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -44818,7 +44818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -45275,7 +45275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Encryption": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", @@ -45671,7 +45671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]", @@ -45828,7 +45828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -46207,7 +46207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -46323,7 +46323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -46472,7 +46472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -46827,7 +46827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Type": "System.String", @@ -46969,7 +46969,7 @@ "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.EncryptionConfiguration, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.CMKIdentityDefinition", "KeyName": "System.String", @@ -47034,7 +47034,7 @@ "Microsoft.Azure.Management.DataFactory.Models.CMKIdentityDefinition": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.CMKIdentityDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.CMKIdentityDefinition, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.CMKIdentityDefinition, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentity": "System.String" }, @@ -47090,7 +47090,7 @@ "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "PrincipalId": "System.Nullable`1[System.Guid]", @@ -47182,7 +47182,7 @@ "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisablePublish": "System.Nullable`1[System.Boolean]", "AccountName": "System.String", @@ -47265,7 +47265,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification" @@ -47274,7 +47274,7 @@ "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.GlobalParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Object", "Type": "System.String" @@ -47462,7 +47462,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Trigger": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Trigger", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Trigger, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Trigger, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Annotations": "System.Collections.Generic.IList`1[System.Object]", @@ -48700,7 +48700,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DataFlow": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DataFlow", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlow, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlow, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder", "Annotations": "System.Collections.Generic.IList`1[System.Object]", @@ -48756,7 +48756,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -48802,7 +48802,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Dataset": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Dataset", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Dataset, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Dataset, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder", "LinkedServiceName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference", @@ -48887,7 +48887,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -48933,7 +48933,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ReferenceName": "System.String", @@ -48989,7 +48989,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification" @@ -48998,7 +48998,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultValue": "System.Object", "Type": "System.String" @@ -49053,7 +49053,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase" ] @@ -49061,7 +49061,7 @@ "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -49101,7 +49101,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData" ] @@ -49109,7 +49109,7 @@ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "SentBytes": "System.Nullable`1[System.Double]", @@ -49195,7 +49195,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError" ] @@ -49203,7 +49203,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Parameters": "System.Collections.Generic.IList`1[System.String]", @@ -49269,7 +49269,7 @@ "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Category": "System.String", "EndPoint": "System.String" @@ -49313,7 +49313,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedService": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedService, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedService, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectVia": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", @@ -49388,7 +49388,7 @@ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ReferenceName": "System.String", @@ -49444,7 +49444,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.Activity" ] @@ -49452,7 +49452,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Activity": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Activity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DependsOn": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]", @@ -49532,7 +49532,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency" ] @@ -49540,7 +49540,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DependencyConditions": "System.Collections.Generic.IList`1[System.String]", @@ -49600,7 +49600,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.UserProperty]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.UserProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.UserProperty" ] @@ -49608,7 +49608,7 @@ "Microsoft.Azure.Management.DataFactory.Models.UserProperty": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.UserProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Object", "Name": "System.String" @@ -49663,7 +49663,7 @@ "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Id": "System.String", @@ -49729,7 +49729,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Parameters": "System.Collections.Generic.IList`1[System.String]", @@ -49805,7 +49805,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode" ] @@ -49813,7 +49813,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", @@ -49874,7 +49874,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime" ] @@ -49882,7 +49882,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "Name": "System.String", @@ -49948,7 +49948,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode" ] @@ -49956,7 +49956,7 @@ "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.DataFactory.Management.Sdk, Version=1.19.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.DeviceRegistry.json b/tools/Tools.Common/SerializedCmdlets/Az.DeviceRegistry.json index 3e04456b4bc0..ba4d30b9d6d8 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.DeviceRegistry.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.DeviceRegistry.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.DeviceRegistry", - "ModuleVersion": "0.1.0", + "ModuleVersion": "0.1.1", "Cmdlets": [ { "VerbName": "Get", @@ -64,7 +64,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -73,7 +73,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -82,7 +82,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -115,7 +115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -124,7 +124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -153,7 +153,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -162,7 +162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -171,7 +171,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -189,7 +201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -204,7 +216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -219,7 +231,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -239,7 +251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -254,7 +266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -301,7 +313,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -316,7 +328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -331,7 +343,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -351,7 +381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -366,7 +396,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -386,7 +416,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -401,7 +431,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -448,7 +478,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -463,7 +493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -478,7 +508,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -498,7 +546,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -518,7 +566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -533,7 +581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -580,7 +628,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -595,7 +643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -610,7 +658,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -659,7 +725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -674,7 +740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -721,7 +787,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -736,7 +802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -751,7 +817,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -775,7 +859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -790,7 +874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -837,7 +921,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -852,7 +936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -867,7 +951,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -925,7 +1027,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -934,7 +1036,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -943,7 +1045,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -976,7 +1078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -985,7 +1087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1014,7 +1116,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1023,7 +1125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1032,7 +1134,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1050,7 +1164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1065,7 +1179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1080,7 +1194,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1100,7 +1214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1115,7 +1229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1162,7 +1276,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1177,7 +1291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1192,7 +1306,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1212,7 +1344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1227,7 +1359,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1247,7 +1379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1262,7 +1394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1309,7 +1441,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1324,7 +1456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1339,7 +1471,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1359,7 +1509,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1379,7 +1529,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1394,7 +1544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1441,7 +1591,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1456,7 +1606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1471,7 +1621,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1520,7 +1688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1535,7 +1703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1582,7 +1750,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1597,7 +1765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1612,7 +1780,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1636,7 +1822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1651,7 +1837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1698,7 +1884,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1713,7 +1899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1728,7 +1914,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1775,7 +1979,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1784,7 +1988,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1817,7 +2021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1826,7 +2030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1855,7 +2059,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1864,7 +2068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1873,7 +2077,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1891,7 +2107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1906,7 +2122,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1926,7 +2142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1941,7 +2157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1988,7 +2204,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2003,7 +2219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2018,7 +2234,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2038,7 +2272,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2058,7 +2292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2073,7 +2307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2120,7 +2354,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2135,7 +2369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2150,7 +2384,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2199,7 +2451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2214,7 +2466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2261,7 +2513,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2276,7 +2528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2291,7 +2543,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2315,7 +2585,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2330,7 +2600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2377,7 +2647,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2392,7 +2662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2407,7 +2677,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2482,7 +2770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2491,7 +2779,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2500,7 +2788,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2509,7 +2797,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2518,7 +2806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2527,7 +2815,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2536,7 +2824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2545,7 +2833,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2564,7 +2852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2573,7 +2861,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2582,7 +2870,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2591,7 +2879,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2600,7 +2888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2609,7 +2897,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2619,7 +2907,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2628,7 +2916,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2637,7 +2925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2656,7 +2944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2665,7 +2953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2674,7 +2962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2683,7 +2971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2692,7 +2980,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2701,7 +2989,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2710,7 +2998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2719,7 +3007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2728,7 +3016,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2737,7 +3025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2746,7 +3034,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2759,7 +3047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2768,7 +3056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2777,7 +3065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2806,7 +3094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2815,7 +3103,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2824,7 +3112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2833,7 +3121,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2851,7 +3151,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2866,7 +3166,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2881,7 +3181,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2900,7 +3200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2915,7 +3215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2930,7 +3230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2977,7 +3277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2992,7 +3292,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3007,7 +3307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3022,7 +3322,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3042,7 +3360,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3057,7 +3375,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3072,7 +3390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3087,7 +3405,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3102,7 +3420,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3133,7 +3451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3148,7 +3466,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3163,7 +3481,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3178,7 +3496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3193,7 +3511,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3208,7 +3526,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3224,7 +3542,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3239,7 +3557,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3254,7 +3572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3285,7 +3603,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3300,7 +3618,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3315,7 +3633,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3330,7 +3648,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3345,7 +3663,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3360,7 +3678,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3375,7 +3693,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3390,7 +3708,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3405,7 +3723,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3423,7 +3741,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3438,7 +3756,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3453,7 +3771,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3472,7 +3790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3487,7 +3805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3502,7 +3820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3549,7 +3867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3564,7 +3882,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3579,7 +3897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3594,7 +3912,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3614,7 +3950,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3632,7 +3968,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3647,7 +3983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3662,7 +3998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3681,7 +4017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3696,7 +4032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3711,7 +4047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3758,7 +4094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3773,7 +4109,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3788,7 +4124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3803,7 +4139,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3823,7 +4177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3841,7 +4195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3856,7 +4210,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3871,7 +4225,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3890,7 +4244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3905,7 +4259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3920,7 +4274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3967,7 +4321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3982,7 +4336,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3997,7 +4351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4012,7 +4366,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4070,7 +4442,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4079,7 +4451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4088,7 +4460,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4097,7 +4469,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4106,7 +4478,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4115,7 +4487,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4124,7 +4496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4133,7 +4505,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4142,7 +4514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4151,7 +4523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4160,7 +4532,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4169,7 +4541,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4178,7 +4550,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4187,7 +4559,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4196,7 +4568,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4205,7 +4577,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4214,7 +4586,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4227,7 +4599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4236,7 +4608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4245,7 +4617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4274,7 +4646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4283,7 +4655,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4292,7 +4664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4301,7 +4673,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4319,7 +4703,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4334,7 +4718,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4349,7 +4733,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4368,7 +4752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4383,7 +4767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4398,7 +4782,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4445,7 +4829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4460,7 +4844,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4475,7 +4859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4490,7 +4874,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4510,7 +4912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4525,7 +4927,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4540,7 +4942,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4555,7 +4957,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4570,7 +4972,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4585,7 +4987,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4600,7 +5002,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4615,7 +5017,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4630,7 +5032,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4645,7 +5047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4660,7 +5062,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4675,7 +5077,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4693,7 +5095,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4708,7 +5110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4723,7 +5125,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4742,7 +5144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4757,7 +5159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4772,7 +5174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4819,7 +5221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4834,7 +5236,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4849,7 +5251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4864,7 +5266,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4884,7 +5304,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4902,7 +5322,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4917,7 +5337,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4932,7 +5352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4951,7 +5371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4966,7 +5386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4981,7 +5401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5028,7 +5448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5043,7 +5463,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5058,7 +5478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5073,7 +5493,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5093,7 +5531,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5111,7 +5549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5126,7 +5564,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5141,7 +5579,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5160,7 +5598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5175,7 +5613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5190,7 +5628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5237,7 +5675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5252,7 +5690,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5267,7 +5705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5282,7 +5720,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5309,7 +5765,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -5325,7 +5781,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5334,7 +5790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5343,7 +5799,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5375,7 +5831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5384,7 +5840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5393,7 +5849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5422,7 +5878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5431,7 +5887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5440,7 +5896,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5449,7 +5905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5458,7 +5914,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5476,7 +5944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5491,7 +5959,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5506,7 +5974,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5525,7 +5993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5540,7 +6008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5555,7 +6023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5602,7 +6070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5617,7 +6085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5632,7 +6100,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5647,7 +6115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5662,7 +6130,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5711,7 +6197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5726,7 +6212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5741,7 +6227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5788,7 +6274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5803,7 +6289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5818,7 +6304,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5833,7 +6319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5848,7 +6334,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5872,7 +6376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5887,7 +6391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5902,7 +6406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5949,7 +6453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5964,7 +6468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5979,7 +6483,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5994,7 +6498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6009,7 +6513,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6036,7 +6558,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -6052,7 +6574,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6061,7 +6583,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6070,7 +6592,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6102,7 +6624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6111,7 +6633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6120,7 +6642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6149,7 +6671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6158,7 +6680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6167,7 +6689,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6176,7 +6698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6185,7 +6707,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6203,7 +6737,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6218,7 +6752,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6233,7 +6767,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6252,7 +6786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6267,7 +6801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6282,7 +6816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6329,7 +6863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6344,7 +6878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6359,7 +6893,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6374,7 +6908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6389,7 +6923,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6438,7 +6990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6453,7 +7005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6468,7 +7020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6515,7 +7067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6530,7 +7082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6545,7 +7097,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6560,7 +7112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6575,7 +7127,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6599,7 +7169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6614,7 +7184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6629,7 +7199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6676,7 +7246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6691,7 +7261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6706,7 +7276,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6721,7 +7291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6736,7 +7306,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6811,7 +7399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6820,7 +7408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6829,7 +7417,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6857,7 +7445,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6876,7 +7464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6885,7 +7473,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6894,7 +7482,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6903,7 +7491,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6912,7 +7500,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6921,7 +7509,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6930,7 +7518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6939,7 +7527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6958,7 +7546,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6967,7 +7555,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6976,7 +7564,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6985,7 +7573,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6994,7 +7582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7003,7 +7591,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7012,7 +7600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7021,7 +7609,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7030,7 +7618,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7039,7 +7627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7052,7 +7640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7061,7 +7649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7070,7 +7658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7099,7 +7687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7108,7 +7696,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7117,7 +7705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7126,7 +7714,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7144,7 +7744,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7159,7 +7759,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7174,7 +7774,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7189,7 +7789,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7208,7 +7808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7223,7 +7823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7238,7 +7838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7285,7 +7885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7300,7 +7900,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7315,7 +7915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7330,7 +7930,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7353,7 +7971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7368,7 +7986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7383,7 +8001,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7398,7 +8016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7417,7 +8035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7432,7 +8050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7447,7 +8065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7494,7 +8112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7509,7 +8127,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7524,7 +8142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7539,7 +8157,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7562,7 +8198,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7577,7 +8213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7592,7 +8228,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7607,7 +8243,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7638,7 +8274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7653,7 +8289,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7668,7 +8304,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7683,7 +8319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7698,7 +8334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7713,7 +8349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7728,7 +8364,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7743,7 +8379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7774,7 +8410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7789,7 +8425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7804,7 +8440,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7819,7 +8455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7834,7 +8470,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7849,7 +8485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7864,7 +8500,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7879,7 +8515,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7898,7 +8534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7913,7 +8549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7928,7 +8564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7975,7 +8611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7990,7 +8626,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8005,7 +8641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8020,7 +8656,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8065,7 +8719,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8096,7 +8750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8111,7 +8765,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8126,7 +8780,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8141,7 +8795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8156,7 +8810,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8171,7 +8825,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8186,7 +8840,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8201,7 +8855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8232,7 +8886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8247,7 +8901,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8262,7 +8916,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8277,7 +8931,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8292,7 +8946,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8307,7 +8961,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8322,7 +8976,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8337,7 +8991,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8356,7 +9010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8371,7 +9025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8386,7 +9040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8433,7 +9087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8448,7 +9102,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8463,7 +9117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8478,7 +9132,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8502,7 +9174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8517,7 +9189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8532,7 +9204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8579,7 +9251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8594,7 +9266,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8609,7 +9281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8624,7 +9296,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8682,7 +9372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8691,7 +9381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8700,7 +9390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8728,7 +9418,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8737,7 +9427,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8746,7 +9436,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8755,7 +9445,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8764,7 +9454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8773,7 +9463,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8782,7 +9472,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8791,7 +9481,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8800,7 +9490,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8809,7 +9499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8822,7 +9512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8831,7 +9521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8840,7 +9530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8869,7 +9559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8878,7 +9568,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8887,7 +9577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8896,7 +9586,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8914,7 +9616,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8929,7 +9631,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8944,7 +9646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8959,7 +9661,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8978,7 +9680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8993,7 +9695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9008,7 +9710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9055,7 +9757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9070,7 +9772,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9085,7 +9787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9100,7 +9802,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9123,7 +9843,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9138,7 +9858,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9153,7 +9873,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9168,7 +9888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9187,7 +9907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9202,7 +9922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9217,7 +9937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9264,7 +9984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9279,7 +9999,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9294,7 +10014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9309,7 +10029,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9332,7 +10070,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9347,7 +10085,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9362,7 +10100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9377,7 +10115,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9392,7 +10130,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9407,7 +10145,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9422,7 +10160,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9437,7 +10175,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9452,7 +10190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9467,7 +10205,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9482,7 +10220,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9501,7 +10239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9516,7 +10254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9531,7 +10269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9578,7 +10316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9593,7 +10331,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9608,7 +10346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9623,7 +10361,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9668,7 +10424,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9683,7 +10439,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9698,7 +10454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9713,7 +10469,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9728,7 +10484,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9743,7 +10499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9758,7 +10514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9773,7 +10529,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9792,7 +10548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9807,7 +10563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9822,7 +10578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9869,7 +10625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9884,7 +10640,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9899,7 +10655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9914,7 +10670,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9938,7 +10712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9953,7 +10727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9968,7 +10742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10015,7 +10789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10030,7 +10804,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10045,7 +10819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10060,7 +10834,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10125,7 +10917,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusDataset]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusDataset]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusDataset, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusDataset, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusDataset" ] @@ -10144,7 +10936,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusError]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusError, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusError, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusError" ] @@ -10161,7 +10953,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -10169,7 +10961,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusEvent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusEvent]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusEvent, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusEvent, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetStatusEvent" ] @@ -10188,7 +10980,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataset]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataset]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataset, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataset, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataset" ] @@ -10208,7 +11000,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataPoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataPoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataPoint, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataPoint, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IDataPoint" ] @@ -10224,7 +11016,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IEvent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IEvent]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IEvent, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IEvent, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IEvent" ] @@ -10240,7 +11032,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -10248,7 +11040,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -10256,7 +11048,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -10398,17 +11190,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -10416,38 +11208,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetEndpointProfileStatusError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetEndpointProfileStatusError]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetEndpointProfileStatusError, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetEndpointProfileStatusError, Az.DeviceRegistry.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DeviceRegistry.Models.IAssetEndpointProfileStatusError" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Fabric.json b/tools/Tools.Common/SerializedCmdlets/Az.Fabric.json index 3887e4f20faa..067a14753dc1 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Fabric.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Fabric.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Fabric", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.1.2", "Cmdlets": [ { "VerbName": "Get", @@ -36,7 +36,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -45,7 +45,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -54,7 +54,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -84,7 +84,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -93,7 +93,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -122,7 +122,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -131,7 +131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -140,7 +140,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -155,7 +167,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -170,7 +182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -185,7 +197,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -205,7 +217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -220,7 +232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -267,7 +279,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -282,7 +294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -297,7 +309,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -317,7 +347,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -332,7 +362,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -352,7 +382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -367,7 +397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -414,7 +444,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -429,7 +459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -444,7 +474,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -464,7 +512,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -484,7 +532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -499,7 +547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -546,7 +594,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -561,7 +609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -576,7 +624,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -622,7 +688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -637,7 +703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -684,7 +750,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -699,7 +765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -714,7 +780,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -738,7 +822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -753,7 +837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -800,7 +884,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -815,7 +899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -830,7 +914,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -890,7 +992,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -900,7 +1002,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -909,7 +1011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -922,7 +1024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -931,7 +1033,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -960,7 +1062,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -969,7 +1071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -978,7 +1080,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -993,7 +1107,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1013,7 +1127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1028,7 +1142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1075,7 +1189,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1090,7 +1204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1105,7 +1219,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1125,7 +1257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1140,7 +1272,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1155,7 +1287,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1175,7 +1307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1190,7 +1322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1237,7 +1369,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1252,7 +1384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1267,7 +1399,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1314,7 +1464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1323,7 +1473,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1332,7 +1482,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1341,7 +1491,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1351,7 +1501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1360,7 +1510,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1369,7 +1519,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1378,7 +1528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1387,7 +1537,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1400,7 +1550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1409,7 +1559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1418,7 +1568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1447,7 +1597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1456,7 +1606,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1465,7 +1615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1474,7 +1624,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1489,7 +1651,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1504,7 +1666,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1519,7 +1681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1538,7 +1700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1553,7 +1715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1568,7 +1730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1615,7 +1777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1630,7 +1792,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1645,7 +1807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1660,7 +1822,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1680,7 +1860,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1696,7 +1876,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1711,7 +1891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1726,7 +1906,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1741,7 +1921,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1756,7 +1936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1771,7 +1951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1790,7 +1970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1805,7 +1985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1820,7 +2000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1867,7 +2047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1882,7 +2062,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1897,7 +2077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1912,7 +2092,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1932,7 +2130,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1947,7 +2145,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1962,7 +2160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1977,7 +2175,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1996,7 +2194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2011,7 +2209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2026,7 +2224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2073,7 +2271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2088,7 +2286,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2103,7 +2301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2118,7 +2316,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2138,7 +2354,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2153,7 +2369,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2168,7 +2384,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2183,7 +2399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2202,7 +2418,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2217,7 +2433,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2232,7 +2448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2279,7 +2495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2294,7 +2510,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2309,7 +2525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2324,7 +2540,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2351,7 +2585,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -2364,7 +2598,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2373,7 +2607,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2382,7 +2616,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2411,7 +2645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2420,7 +2654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2429,7 +2663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2458,7 +2692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2467,7 +2701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2476,7 +2710,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2485,7 +2719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2494,7 +2728,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2509,7 +2755,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2524,7 +2770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2539,7 +2785,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2558,7 +2804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2573,7 +2819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2588,7 +2834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2635,7 +2881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2650,7 +2896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2665,7 +2911,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2680,7 +2926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2695,7 +2941,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2741,7 +3005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2756,7 +3020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2771,7 +3035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2818,7 +3082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2833,7 +3097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2848,7 +3112,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2863,7 +3127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2878,7 +3142,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2902,7 +3184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2917,7 +3199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2932,7 +3214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2979,7 +3261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2994,7 +3276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3009,7 +3291,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3024,7 +3306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3039,7 +3321,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3066,7 +3366,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -3079,7 +3379,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3088,7 +3388,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3097,7 +3397,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3126,7 +3426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3135,7 +3435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3144,7 +3444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3173,7 +3473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3182,7 +3482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3191,7 +3491,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3200,7 +3500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3209,7 +3509,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3224,7 +3536,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3239,7 +3551,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3254,7 +3566,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3273,7 +3585,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3288,7 +3600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3303,7 +3615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3350,7 +3662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3365,7 +3677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3380,7 +3692,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3395,7 +3707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3410,7 +3722,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3456,7 +3786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3471,7 +3801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3486,7 +3816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3533,7 +3863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3548,7 +3878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3563,7 +3893,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3578,7 +3908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3593,7 +3923,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3617,7 +3965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3632,7 +3980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3647,7 +3995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3694,7 +4042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3709,7 +4057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3724,7 +4072,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3739,7 +4087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3754,7 +4102,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3781,7 +4147,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -3794,7 +4160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3803,7 +4169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3812,7 +4178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3841,7 +4207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3850,7 +4216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3859,7 +4225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3888,7 +4254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3897,7 +4263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3906,7 +4272,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3915,7 +4281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3924,7 +4290,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3939,7 +4317,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3954,7 +4332,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3969,7 +4347,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3988,7 +4366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4003,7 +4381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4018,7 +4396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4065,7 +4443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4080,7 +4458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4095,7 +4473,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4110,7 +4488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4125,7 +4503,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4171,7 +4567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4186,7 +4582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4201,7 +4597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4248,7 +4644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4263,7 +4659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4278,7 +4674,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4293,7 +4689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4308,7 +4704,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4332,7 +4746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4347,7 +4761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4362,7 +4776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4409,7 +4823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4424,7 +4838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4439,7 +4853,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4454,7 +4868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4469,7 +4883,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4514,7 +4946,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4523,7 +4955,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4561,7 +4993,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4570,7 +5002,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4579,7 +5011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4588,7 +5020,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4601,7 +5033,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4610,7 +5042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4639,7 +5071,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4648,7 +5080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4657,7 +5089,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4672,7 +5116,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4687,7 +5131,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4702,7 +5146,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4721,7 +5165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4736,7 +5180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4783,7 +5227,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4798,7 +5242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4813,7 +5257,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4833,7 +5295,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4848,7 +5310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4863,7 +5325,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4882,7 +5344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4897,7 +5359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4944,7 +5406,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4959,7 +5421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4974,7 +5436,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4994,7 +5474,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5009,7 +5489,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5024,7 +5504,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5039,7 +5519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5058,7 +5538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5073,7 +5553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5120,7 +5600,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5135,7 +5615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5150,7 +5630,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5170,7 +5668,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5185,7 +5683,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5223,7 +5721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5238,7 +5736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5285,7 +5783,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5300,7 +5798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5315,7 +5813,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5357,7 +5873,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5372,7 +5888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5391,7 +5907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5406,7 +5922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5453,7 +5969,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5468,7 +5984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5483,7 +5999,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5548,7 +6082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5563,7 +6097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5610,7 +6144,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5625,7 +6159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5640,7 +6174,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5664,7 +6216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5679,7 +6231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5726,7 +6278,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5741,7 +6293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5756,7 +6308,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5803,7 +6373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5812,7 +6382,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5821,7 +6391,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5846,7 +6416,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5856,7 +6426,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5865,7 +6435,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5874,7 +6444,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5883,7 +6453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5896,7 +6466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5905,7 +6475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5914,7 +6484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5943,7 +6513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5952,7 +6522,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5961,7 +6531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5970,7 +6540,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5985,7 +6567,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6000,7 +6582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6015,7 +6597,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6030,7 +6612,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6049,7 +6631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6064,7 +6646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6079,7 +6661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6126,7 +6708,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6141,7 +6723,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6156,7 +6738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6171,7 +6753,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6191,7 +6791,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6206,7 +6806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6221,7 +6821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6236,7 +6836,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6255,7 +6855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6270,7 +6870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6285,7 +6885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6332,7 +6932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6347,7 +6947,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6362,7 +6962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6377,7 +6977,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6397,7 +7015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6412,7 +7030,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6427,7 +7045,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6442,7 +7060,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6458,7 +7076,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6473,7 +7091,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6492,7 +7110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6507,7 +7125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6522,7 +7140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6569,7 +7187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6584,7 +7202,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6599,7 +7217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6614,7 +7232,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6656,7 +7292,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6672,7 +7308,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6687,7 +7323,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6706,7 +7342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6721,7 +7357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6736,7 +7372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6783,7 +7419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6798,7 +7434,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6813,7 +7449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6828,7 +7464,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6852,7 +7506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6867,7 +7521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6882,7 +7536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6929,7 +7583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6944,7 +7598,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6959,7 +7613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6974,7 +7628,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7034,7 +7706,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -7176,17 +7848,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -7194,38 +7866,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Informatica.json b/tools/Tools.Common/SerializedCmdlets/Az.Informatica.json index a7f5f7394a89..048ecd8ffc12 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Informatica.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Informatica.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Informatica", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.1.2", "Cmdlets": [ { "VerbName": "Get", @@ -58,7 +58,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -67,7 +67,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -76,7 +76,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -106,7 +106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -115,7 +115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -144,7 +144,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -153,7 +153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -162,7 +162,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -180,7 +192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -195,7 +207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -210,7 +222,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -230,7 +242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -245,7 +257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -292,7 +304,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -307,7 +319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -322,7 +334,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -342,7 +372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -357,7 +387,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -377,7 +407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -392,7 +422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -439,7 +469,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -454,7 +484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -469,7 +499,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -489,7 +537,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -509,7 +557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -524,7 +572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -571,7 +619,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -586,7 +634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -601,7 +649,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -647,7 +713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -662,7 +728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -709,7 +775,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -724,7 +790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -739,7 +805,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -763,7 +847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -778,7 +862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -825,7 +909,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -840,7 +924,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -855,7 +939,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -905,7 +1007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -914,7 +1016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -923,7 +1025,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -953,7 +1055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -962,7 +1064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -991,7 +1093,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1000,7 +1102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1009,7 +1111,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1024,7 +1138,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1039,7 +1153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1054,7 +1168,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1074,7 +1188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1089,7 +1203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1136,7 +1250,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1151,7 +1265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1166,7 +1280,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1212,7 +1344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1227,7 +1359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1274,7 +1406,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1289,7 +1421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1304,7 +1436,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1328,7 +1478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1343,7 +1493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1390,7 +1540,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1405,7 +1555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1420,7 +1570,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1463,7 +1631,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1472,7 +1640,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1481,7 +1649,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1511,7 +1679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1520,7 +1688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1549,7 +1717,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1558,7 +1726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1567,7 +1735,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1582,7 +1762,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1597,7 +1777,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1612,7 +1792,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1632,7 +1812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1647,7 +1827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1694,7 +1874,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1709,7 +1889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1724,7 +1904,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1770,7 +1968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1785,7 +1983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1832,7 +2030,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1847,7 +2045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1862,7 +2060,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1886,7 +2102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1901,7 +2117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1948,7 +2164,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1963,7 +2179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1978,7 +2194,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2039,7 +2273,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2048,7 +2282,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2057,7 +2291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2066,7 +2300,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2112,7 +2346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2121,7 +2355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2150,7 +2384,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2159,7 +2393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2168,7 +2402,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2186,7 +2432,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2227,7 +2473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2242,7 +2488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2289,7 +2535,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2304,7 +2550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2319,7 +2565,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2342,7 +2606,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2357,7 +2621,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2372,7 +2636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2387,7 +2651,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2407,7 +2671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2422,7 +2686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2469,7 +2733,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2484,7 +2748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2499,7 +2763,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2519,7 +2801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2534,7 +2816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2549,7 +2831,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2569,7 +2851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2584,7 +2866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2631,7 +2913,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2646,7 +2928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2661,7 +2943,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2707,7 +3007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2722,7 +3022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2769,7 +3069,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2784,7 +3084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2799,7 +3099,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2823,7 +3141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2838,7 +3156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2885,7 +3203,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2900,7 +3218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2915,7 +3233,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2973,7 +3309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2982,7 +3318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2991,7 +3327,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3000,7 +3336,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3045,7 +3381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3054,7 +3390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3083,7 +3419,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3092,7 +3428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3101,7 +3437,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3116,7 +3464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3131,7 +3479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3146,7 +3494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3161,7 +3509,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3180,7 +3528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3195,7 +3543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3242,7 +3590,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3257,7 +3605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3272,7 +3620,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3292,7 +3658,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3333,7 +3699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3348,7 +3714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3395,7 +3761,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3410,7 +3776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3425,7 +3791,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3471,7 +3855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3486,7 +3870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3533,7 +3917,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3548,7 +3932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3563,7 +3947,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3587,7 +3989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3602,7 +4004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3649,7 +4051,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3664,7 +4066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3679,7 +4081,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3748,7 +4168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3757,7 +4177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3766,7 +4186,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3775,7 +4195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3784,7 +4204,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3793,7 +4213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3802,7 +4222,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3811,7 +4231,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3820,7 +4240,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3829,7 +4249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3838,7 +4258,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3847,7 +4267,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3856,7 +4276,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3865,7 +4285,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3874,7 +4294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3883,7 +4303,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3892,7 +4312,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3901,7 +4321,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3910,7 +4330,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3919,7 +4339,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3928,7 +4348,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3937,7 +4357,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3946,7 +4366,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3955,7 +4375,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3964,7 +4384,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3973,7 +4393,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3982,7 +4402,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3991,7 +4411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4000,7 +4420,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4009,7 +4429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4022,7 +4442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4031,7 +4451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4040,7 +4460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4069,7 +4489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4078,7 +4498,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4087,7 +4507,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4096,7 +4516,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4114,7 +4546,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4129,7 +4561,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4144,7 +4576,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4163,7 +4595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4178,7 +4610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4193,7 +4625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4240,7 +4672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4255,7 +4687,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4270,7 +4702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4285,7 +4717,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4305,7 +4755,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4320,7 +4770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4335,7 +4785,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4350,7 +4800,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4365,7 +4815,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4380,7 +4830,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4395,7 +4845,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4410,7 +4860,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4425,7 +4875,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4440,7 +4890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4455,7 +4905,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4470,7 +4920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4485,7 +4935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4500,7 +4950,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4515,7 +4965,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4530,7 +4980,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4545,7 +4995,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4560,7 +5010,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4575,7 +5025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4590,7 +5040,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4605,7 +5055,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4620,7 +5070,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4635,7 +5085,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4650,7 +5100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4665,7 +5115,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4683,7 +5133,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4698,7 +5148,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4713,7 +5163,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4732,7 +5182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4747,7 +5197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4762,7 +5212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4809,7 +5259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4824,7 +5274,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4839,7 +5289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4854,7 +5304,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4874,7 +5342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4892,7 +5360,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4907,7 +5375,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4922,7 +5390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4941,7 +5409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4956,7 +5424,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4971,7 +5439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5018,7 +5486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5033,7 +5501,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5048,7 +5516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5063,7 +5531,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5083,7 +5569,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5101,7 +5587,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5116,7 +5602,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5131,7 +5617,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5150,7 +5636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5165,7 +5651,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5180,7 +5666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5227,7 +5713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5242,7 +5728,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5257,7 +5743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5272,7 +5758,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5333,7 +5837,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5342,7 +5846,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5351,7 +5855,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5360,7 +5864,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5379,7 +5883,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5388,7 +5892,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5397,7 +5901,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5406,7 +5910,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5415,7 +5919,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5424,7 +5928,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5433,7 +5937,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5442,7 +5946,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5451,7 +5955,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5490,7 +5994,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5499,7 +6003,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5508,7 +6012,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5517,7 +6021,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5530,7 +6034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5539,7 +6043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5548,7 +6052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5577,7 +6081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5586,7 +6090,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5595,7 +6099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5604,7 +6108,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5622,7 +6138,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5637,7 +6153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5652,7 +6168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5667,7 +6183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5686,7 +6202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5701,7 +6217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5716,7 +6232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5763,7 +6279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5778,7 +6294,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5793,7 +6309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5808,7 +6324,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5844,7 +6378,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5859,7 +6393,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5874,7 +6408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5889,7 +6423,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5904,7 +6438,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5919,7 +6453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5934,7 +6468,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5949,7 +6483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5964,7 +6498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6027,7 +6561,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6042,7 +6576,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6060,7 +6594,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6075,7 +6609,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6090,7 +6624,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6105,7 +6639,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6124,7 +6658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6139,7 +6673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6154,7 +6688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6201,7 +6735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6216,7 +6750,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6231,7 +6765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6246,7 +6780,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6266,7 +6818,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6284,7 +6836,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6299,7 +6851,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6314,7 +6866,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6329,7 +6881,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6348,7 +6900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6363,7 +6915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6378,7 +6930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6425,7 +6977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6440,7 +6992,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6455,7 +7007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6470,7 +7022,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6490,7 +7060,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6508,7 +7078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6523,7 +7093,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6538,7 +7108,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6553,7 +7123,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6572,7 +7142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6587,7 +7157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6602,7 +7172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6649,7 +7219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6664,7 +7234,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6679,7 +7249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6694,7 +7264,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6721,7 +7309,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -6737,7 +7325,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6746,7 +7334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6755,7 +7343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6784,7 +7372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6793,7 +7381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6802,7 +7390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6831,7 +7419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6840,7 +7428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6849,7 +7437,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6858,7 +7446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6867,7 +7455,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6885,7 +7485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6900,7 +7500,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6915,7 +7515,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6934,7 +7534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6949,7 +7549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6964,7 +7564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7011,7 +7611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7026,7 +7626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7041,7 +7641,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7056,7 +7656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7071,7 +7671,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7117,7 +7735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7132,7 +7750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7147,7 +7765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7194,7 +7812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7209,7 +7827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7224,7 +7842,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7239,7 +7857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7254,7 +7872,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7278,7 +7914,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7293,7 +7929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7308,7 +7944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7355,7 +7991,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7370,7 +8006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7385,7 +8021,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7400,7 +8036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7415,7 +8051,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7442,7 +8096,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -7458,7 +8112,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7467,7 +8121,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7476,7 +8130,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7485,7 +8139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7530,7 +8184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7539,7 +8193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7548,7 +8202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7577,7 +8231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7586,7 +8240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7595,7 +8249,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7604,7 +8258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7613,7 +8267,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7631,7 +8297,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7672,7 +8338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7687,7 +8353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7702,7 +8368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7749,7 +8415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7764,7 +8430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7779,7 +8445,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7794,7 +8460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7809,7 +8475,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7832,7 +8516,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7847,7 +8531,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7862,7 +8546,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7877,7 +8561,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7896,7 +8580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7911,7 +8595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7926,7 +8610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7973,7 +8657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7988,7 +8672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8003,7 +8687,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8018,7 +8702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8033,7 +8717,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8079,7 +8781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8094,7 +8796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8109,7 +8811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8156,7 +8858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8171,7 +8873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8186,7 +8888,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8201,7 +8903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8216,7 +8918,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8240,7 +8960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8255,7 +8975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8270,7 +8990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8317,7 +9037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8332,7 +9052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8347,7 +9067,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8362,7 +9082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8377,7 +9097,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8404,7 +9142,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -8417,7 +9155,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8426,7 +9164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8435,7 +9173,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8444,7 +9182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8489,7 +9227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8498,7 +9236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8527,7 +9265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8536,7 +9274,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8545,7 +9283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8554,7 +9292,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8569,7 +9319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8584,7 +9334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8599,7 +9349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8614,7 +9364,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8633,7 +9383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8648,7 +9398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8695,7 +9445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8710,7 +9460,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8725,7 +9475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8740,7 +9490,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8760,7 +9528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8801,7 +9569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8816,7 +9584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8863,7 +9631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8878,7 +9646,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8893,7 +9661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8908,7 +9676,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8954,7 +9740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8969,7 +9755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9016,7 +9802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9031,7 +9817,22 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9042,11 +9843,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9057,11 +9858,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9085,7 +9889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9100,7 +9904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9147,7 +9951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9162,7 +9966,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9177,7 +9981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9192,7 +9996,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9237,7 +10059,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9246,7 +10068,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9255,7 +10077,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9264,7 +10086,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9309,7 +10131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9318,7 +10140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9347,7 +10169,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9356,7 +10178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9365,7 +10187,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9380,7 +10214,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9395,7 +10229,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9410,7 +10244,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9425,7 +10259,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9444,7 +10278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9459,7 +10293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9506,7 +10340,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9521,7 +10355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9536,7 +10370,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9556,7 +10408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9597,7 +10449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9612,7 +10464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9659,7 +10511,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9674,7 +10526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9689,7 +10541,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9735,7 +10605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9750,7 +10620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9797,7 +10667,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9812,7 +10682,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9827,7 +10697,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9851,7 +10739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9866,7 +10754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9913,7 +10801,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9928,7 +10816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9943,7 +10831,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10012,7 +10918,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10021,7 +10927,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10030,7 +10936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10086,7 +10992,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10095,7 +11001,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10104,7 +11010,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10117,7 +11023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10126,7 +11032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10155,7 +11061,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10164,7 +11070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10173,7 +11079,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10191,7 +11109,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10206,7 +11124,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10221,7 +11139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10236,7 +11154,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10255,7 +11173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10270,7 +11188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10317,7 +11235,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10332,7 +11250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10347,7 +11265,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10370,7 +11306,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10385,7 +11321,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10400,7 +11336,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10415,7 +11351,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10434,7 +11370,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10449,7 +11385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10496,7 +11432,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10511,7 +11447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10526,7 +11462,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10549,7 +11503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10564,7 +11518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10579,7 +11533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10631,7 +11585,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10650,7 +11604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10665,7 +11619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10712,7 +11666,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10727,7 +11681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10742,7 +11696,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10821,7 +11793,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10840,7 +11812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10855,7 +11827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10902,7 +11874,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10917,7 +11889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10932,7 +11904,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10956,7 +11946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10971,7 +11961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11018,7 +12008,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11033,7 +12023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11048,7 +12038,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11109,7 +12117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11118,7 +12126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11127,7 +12135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11136,7 +12144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11187,7 +12195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11196,7 +12204,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11205,7 +12213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11214,7 +12222,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11223,7 +12231,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11232,7 +12240,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11241,7 +12249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11250,7 +12258,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11259,7 +12267,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11298,7 +12306,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11307,7 +12315,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11316,7 +12324,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11325,7 +12333,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11338,7 +12346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11347,7 +12355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11376,7 +12384,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11385,7 +12393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11394,7 +12402,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11412,7 +12432,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11427,7 +12447,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11442,7 +12462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11457,7 +12477,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11472,7 +12492,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11491,7 +12511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11506,7 +12526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11553,7 +12573,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11568,7 +12588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11583,7 +12603,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11606,7 +12644,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11621,7 +12659,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11636,7 +12674,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11651,7 +12689,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11666,7 +12704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11685,7 +12723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11700,7 +12738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11747,7 +12785,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11762,7 +12800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11777,7 +12815,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11800,7 +12856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11853,7 +12909,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11868,7 +12924,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11883,7 +12939,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11898,7 +12954,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11913,7 +12969,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11928,7 +12984,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11943,7 +12999,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11958,7 +13014,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11973,7 +13029,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12036,7 +13092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12051,7 +13107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12070,7 +13126,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12085,7 +13141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12132,7 +13188,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12147,7 +13203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12162,7 +13218,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12185,7 +13259,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12200,7 +13274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12215,7 +13289,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12230,7 +13304,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12261,7 +13335,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12276,7 +13350,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12291,7 +13365,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12306,7 +13380,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12321,7 +13395,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12336,7 +13410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12351,7 +13425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12366,7 +13440,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12381,7 +13455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12444,7 +13518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12459,7 +13533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12478,7 +13552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12493,7 +13567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12540,7 +13614,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12555,7 +13629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12570,7 +13644,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12628,7 +13720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12643,7 +13735,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12658,7 +13750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12673,7 +13765,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12688,7 +13780,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12703,7 +13795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12718,7 +13810,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12733,7 +13825,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12748,7 +13840,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12811,7 +13903,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12826,7 +13918,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12845,7 +13937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12860,7 +13952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12907,7 +13999,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12922,7 +14014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12937,7 +14029,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12961,7 +14071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12976,7 +14086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13023,7 +14133,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13038,7 +14148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13053,7 +14163,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13113,7 +14241,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -13255,17 +14383,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -13273,38 +14401,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationTypeMetadata]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationTypeMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationTypeMetadata, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationTypeMetadata, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationTypeMetadata" ] @@ -13321,7 +14449,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.ICdiConfigProps]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.ICdiConfigProps]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.ICdiConfigProps, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.ICdiConfigProps, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.ICdiConfigProps" ] @@ -13339,7 +14467,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationConfigs]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationConfigs]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationConfigs, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationConfigs, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IApplicationConfigs" ] @@ -13360,7 +14488,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IComputeUnitsMetadata]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IComputeUnitsMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IComputeUnitsMetadata, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IComputeUnitsMetadata, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IComputeUnitsMetadata" ] @@ -13377,7 +14505,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -13385,7 +14513,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IRegionsMetadata]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IRegionsMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IRegionsMetadata, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IRegionsMetadata, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IRegionsMetadata" ] @@ -13402,7 +14530,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IInfaRuntimeResourceFetchMetaData]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IInfaRuntimeResourceFetchMetaData]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IInfaRuntimeResourceFetchMetaData, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IInfaRuntimeResourceFetchMetaData, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IInfaRuntimeResourceFetchMetaData" ] @@ -13442,7 +14570,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IAdvancedCustomProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IAdvancedCustomProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IAdvancedCustomProperties, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IAdvancedCustomProperties, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IAdvancedCustomProperties" ] @@ -13459,7 +14587,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeTag, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeTag, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeTag" ] @@ -13476,7 +14604,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeDependency]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeDependency]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeDependency, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeDependency, Az.Informatica.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Informatica.Models.IServerlessRuntimeDependency" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.KubernetesRuntime.json b/tools/Tools.Common/SerializedCmdlets/Az.KubernetesRuntime.json index c7a094fecfc4..90c90ae606e4 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.KubernetesRuntime.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.KubernetesRuntime.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.KubernetesRuntime", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.2.0", "Cmdlets": [ { "VerbName": "Disable", @@ -36,7 +36,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -49,7 +49,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -58,7 +58,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -87,7 +87,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -96,7 +96,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -105,7 +105,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -123,7 +135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -142,7 +154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -157,7 +169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -204,7 +216,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -219,7 +231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -234,7 +246,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -281,7 +311,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -294,7 +324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -303,7 +333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -332,7 +362,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -341,7 +371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -350,7 +380,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -368,7 +410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -387,7 +429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -402,7 +444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -449,7 +491,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -464,7 +506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -479,7 +521,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -526,7 +586,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -535,7 +595,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -548,7 +608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -557,7 +617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -586,7 +646,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -595,7 +655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -604,7 +664,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -622,7 +694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -637,7 +709,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -656,7 +728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -671,7 +743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -718,7 +790,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -733,7 +805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -748,7 +820,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -795,7 +885,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -804,7 +894,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -817,7 +907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -826,7 +916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -855,7 +945,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -864,7 +954,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -873,7 +963,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -891,7 +993,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -906,7 +1008,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -925,7 +1027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -940,7 +1042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -987,7 +1089,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1002,7 +1104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1017,7 +1119,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1066,7 +1186,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1078,7 +1198,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1108,7 +1228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1117,7 +1237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1146,7 +1266,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1155,7 +1275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1164,7 +1284,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1182,7 +1314,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1201,7 +1333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1216,7 +1348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1263,7 +1395,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1278,7 +1410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1293,7 +1425,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1316,7 +1466,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1334,7 +1484,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1353,7 +1503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1368,7 +1518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1415,7 +1565,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1430,7 +1580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1445,7 +1595,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1492,7 +1660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1507,7 +1675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1554,7 +1722,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1569,7 +1737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1584,7 +1752,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1608,7 +1794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1623,7 +1809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1670,7 +1856,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1685,7 +1871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1700,7 +1886,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1750,7 +1954,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1762,7 +1966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1792,7 +1996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1801,7 +2005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1830,7 +2034,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1839,7 +2043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1848,7 +2052,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1866,7 +2082,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1885,7 +2101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1900,7 +2116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1947,7 +2163,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1962,7 +2178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1977,7 +2193,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2000,7 +2234,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2018,7 +2252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2037,7 +2271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2052,7 +2286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2099,7 +2333,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2114,7 +2348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2129,7 +2363,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2176,7 +2428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2191,7 +2443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2238,7 +2490,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2253,7 +2505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2268,7 +2520,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2292,7 +2562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2307,7 +2577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2354,7 +2624,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2369,7 +2639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2384,7 +2654,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2431,7 +2719,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2443,7 +2731,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2473,7 +2761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2482,7 +2770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2511,7 +2799,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2520,7 +2808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2529,7 +2817,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2547,7 +2847,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2566,7 +2866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2581,7 +2881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2628,7 +2928,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2643,7 +2943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2658,7 +2958,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2681,7 +2999,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2699,7 +3017,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2718,7 +3036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2733,7 +3051,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2780,7 +3098,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2795,7 +3113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2810,7 +3128,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2857,7 +3193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2872,7 +3208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2919,7 +3255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2934,7 +3270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2949,7 +3285,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2973,7 +3327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2988,7 +3342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3035,7 +3389,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3050,7 +3404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3065,7 +3419,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3122,7 +3494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3134,7 +3506,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3164,7 +3536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3173,7 +3545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3202,7 +3574,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3211,7 +3583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3220,7 +3592,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3238,7 +3622,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3257,7 +3641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3272,7 +3656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3319,7 +3703,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3334,7 +3718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3349,7 +3733,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3372,7 +3774,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3390,7 +3792,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3409,7 +3811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3424,7 +3826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3471,7 +3873,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3486,7 +3888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3501,7 +3903,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3548,7 +3968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3563,7 +3983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3610,7 +4030,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3625,7 +4045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3640,7 +4060,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3664,7 +4102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3679,7 +4117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3726,7 +4164,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3741,7 +4179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3756,7 +4194,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3805,7 +4261,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3817,7 +4273,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3826,7 +4282,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3835,7 +4291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3844,7 +4300,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3853,7 +4309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3862,7 +4318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3875,7 +4331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3884,7 +4340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3893,7 +4349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3922,7 +4378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3931,7 +4387,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3940,7 +4396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3949,7 +4405,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3967,7 +4435,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3985,7 +4453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4004,7 +4472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4019,7 +4487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4034,7 +4502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4081,7 +4549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4096,7 +4564,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4111,7 +4579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4126,7 +4594,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4146,7 +4632,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4161,7 +4647,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4176,7 +4662,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4194,7 +4680,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4212,7 +4698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4231,7 +4717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4246,7 +4732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4261,7 +4747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4308,7 +4794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4323,7 +4809,22 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4334,11 +4835,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4349,11 +4850,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4373,7 +4877,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4391,7 +4895,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4409,7 +4913,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4428,7 +4932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4443,7 +4947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4458,7 +4962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4505,7 +5009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4520,7 +5024,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4535,7 +5039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4550,7 +5054,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4570,7 +5092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4588,7 +5110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4606,7 +5128,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4625,7 +5147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4640,7 +5162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4655,7 +5177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4702,7 +5224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4717,7 +5239,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4732,7 +5254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4747,7 +5269,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4889,7 +5429,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4898,7 +5438,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4913,7 +5465,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4928,7 +5480,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4936,6 +5488,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -4978,7 +5548,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4990,7 +5560,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4999,7 +5569,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5009,7 +5579,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5018,7 +5588,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5028,7 +5598,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5037,7 +5607,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5046,7 +5616,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5059,7 +5629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5068,7 +5638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5077,7 +5647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5106,7 +5676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5115,7 +5685,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5124,7 +5694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5133,7 +5703,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5151,7 +5733,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5169,7 +5751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5188,7 +5770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5203,7 +5785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5218,7 +5800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5265,7 +5847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5280,7 +5862,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5295,7 +5877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5310,7 +5892,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5330,7 +5930,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5346,7 +5946,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5361,7 +5961,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5377,7 +5977,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5395,7 +5995,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5413,7 +6013,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5432,7 +6032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5447,7 +6047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5462,7 +6062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5509,7 +6109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5524,7 +6124,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5539,7 +6139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5554,7 +6154,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5574,7 +6192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5592,7 +6210,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5610,7 +6228,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5629,7 +6247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5644,7 +6262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5659,7 +6277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5706,7 +6324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5721,7 +6339,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5736,7 +6354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5751,7 +6369,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5771,7 +6407,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5789,7 +6425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5807,7 +6443,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5826,7 +6462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5841,7 +6477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5856,7 +6492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5903,7 +6539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5918,7 +6554,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5933,7 +6569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5948,7 +6584,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6081,6 +6735,45 @@ "__AllParameterSets" ] } + ], + "Parameters": [ + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } ] }, { @@ -6215,7 +6908,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6224,7 +6917,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6233,7 +6926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6242,7 +6935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6251,7 +6944,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6266,7 +6971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6281,7 +6986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6296,7 +7001,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6311,7 +7016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6326,7 +7031,25 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6467,7 +7190,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6482,7 +7217,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6490,6 +7225,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -6529,7 +7282,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6541,7 +7294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6550,7 +7303,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6559,7 +7312,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6572,7 +7325,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6581,7 +7334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6610,7 +7363,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6619,7 +7372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6628,7 +7381,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6646,7 +7411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6664,7 +7429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6683,7 +7448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6698,7 +7463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6745,7 +7510,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6760,7 +7525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6775,7 +7540,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6795,7 +7578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6813,7 +7596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6831,7 +7614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6850,7 +7633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6865,7 +7648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6912,7 +7695,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6927,7 +7710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6942,7 +7725,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6962,7 +7763,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6980,7 +7781,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6998,7 +7799,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7017,7 +7818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7032,7 +7833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7079,7 +7880,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7094,7 +7895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7109,7 +7910,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7254,7 +8073,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7263,7 +8082,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7272,7 +8091,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7281,16 +8100,28 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Username", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Username", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7305,7 +8136,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7320,7 +8151,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7335,7 +8166,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7350,7 +8181,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7365,7 +8196,25 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7422,7 +8271,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7434,7 +8283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7443,7 +8292,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7453,7 +8302,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7462,7 +8311,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7471,7 +8320,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7480,7 +8329,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7490,7 +8339,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7500,7 +8349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7509,7 +8358,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7518,7 +8367,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7539,7 +8388,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7548,7 +8397,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7557,7 +8406,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7570,7 +8419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7579,7 +8428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7588,7 +8437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7617,7 +8466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7626,7 +8475,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7635,7 +8484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7644,7 +8493,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7662,7 +8523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7680,7 +8541,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7699,7 +8560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7714,7 +8575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7729,7 +8590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7776,7 +8637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7791,7 +8652,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7806,7 +8667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7821,7 +8682,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7841,7 +8720,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7857,7 +8736,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7872,7 +8751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7887,7 +8766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7902,7 +8781,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7918,7 +8797,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7934,7 +8813,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7949,7 +8828,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7964,7 +8843,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7997,7 +8876,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8015,7 +8894,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8033,7 +8912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8052,7 +8931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8067,7 +8946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8082,7 +8961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8129,7 +9008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8144,7 +9023,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8159,7 +9038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8174,7 +9053,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8194,7 +9091,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8212,7 +9109,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8230,7 +9127,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8249,7 +9146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8264,7 +9161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8279,7 +9176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8326,7 +9223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8341,7 +9238,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8356,7 +9253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8371,7 +9268,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8391,7 +9306,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8409,7 +9324,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8427,7 +9342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8446,7 +9361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8461,7 +9376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8476,7 +9391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8523,7 +9438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8538,7 +9453,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8553,7 +9468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8568,7 +9483,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8595,7 +9528,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -8611,7 +9544,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8623,7 +9556,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8653,7 +9586,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8662,7 +9595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8691,7 +9624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8700,7 +9633,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8709,7 +9642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8718,7 +9651,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8736,7 +9681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8754,7 +9699,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8773,7 +9718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8788,7 +9733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8835,7 +9780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8850,7 +9795,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8865,7 +9810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8880,7 +9825,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8927,7 +9890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8942,7 +9905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8989,7 +9952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9004,7 +9967,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9019,7 +9982,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9034,7 +9997,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9058,7 +10039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9073,7 +10054,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9120,7 +10101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9135,7 +10116,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9150,7 +10131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9165,7 +10146,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9192,7 +10191,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -9208,7 +10207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9220,7 +10219,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9250,7 +10249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9259,7 +10258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9288,7 +10287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9297,7 +10296,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9306,7 +10305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9315,7 +10314,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9333,7 +10344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9351,7 +10362,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9370,7 +10381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9385,7 +10396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9432,7 +10443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9447,7 +10458,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9462,7 +10473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9477,7 +10488,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9524,7 +10553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9539,7 +10568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9586,7 +10615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9601,7 +10630,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9616,7 +10645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9631,7 +10660,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9655,7 +10702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9670,7 +10717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9717,7 +10764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9732,7 +10779,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9747,7 +10794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9762,7 +10809,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9789,7 +10854,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -9805,7 +10870,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9817,7 +10882,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9847,7 +10912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9856,7 +10921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9885,7 +10950,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9894,7 +10959,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9903,7 +10968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9912,7 +10977,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9930,7 +11007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9948,7 +11025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9967,7 +11044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9982,7 +11059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10029,7 +11106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10044,7 +11121,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10059,7 +11136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10074,7 +11151,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10121,7 +11216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10136,7 +11231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10183,7 +11278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10198,7 +11293,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10213,7 +11308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10228,7 +11323,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10252,7 +11365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10267,7 +11380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10314,7 +11427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10329,7 +11442,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10344,7 +11457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10359,7 +11472,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10386,7 +11517,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -10402,7 +11533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10414,7 +11545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10444,7 +11575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10453,7 +11584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10462,7 +11593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10491,7 +11622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10500,7 +11631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10509,7 +11640,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10518,7 +11649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10527,7 +11658,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10545,7 +11688,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10563,7 +11706,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10582,7 +11725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10597,7 +11740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10612,7 +11755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10659,7 +11802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10674,7 +11817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10689,7 +11832,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10704,7 +11847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10719,7 +11862,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10766,7 +11927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10781,7 +11942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10796,7 +11957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10843,7 +12004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10858,7 +12019,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10873,7 +12034,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10888,7 +12049,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10903,7 +12064,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10927,7 +12106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10942,7 +12121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10957,7 +12136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11004,7 +12183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11019,7 +12198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11034,7 +12213,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11049,7 +12228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11064,7 +12243,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11113,7 +12310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11125,7 +12322,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11151,7 +12348,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11160,7 +12357,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11169,7 +12366,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11182,7 +12379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11191,7 +12388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11200,7 +12397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11229,7 +12426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11238,7 +12435,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11247,7 +12444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11256,7 +12453,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11274,7 +12483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11292,7 +12501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11307,7 +12516,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11322,7 +12531,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11337,7 +12546,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11356,7 +12565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11371,7 +12580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11386,7 +12595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11433,7 +12642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11448,7 +12657,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11463,7 +12672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11478,7 +12687,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11521,7 +12748,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11536,7 +12763,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11551,7 +12778,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11570,7 +12797,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11585,7 +12812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11600,7 +12827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11647,7 +12874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11662,7 +12889,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11677,7 +12904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11692,7 +12919,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11712,7 +12957,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11727,7 +12972,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11742,7 +12987,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11761,7 +13006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11776,7 +13021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11791,7 +13036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11838,7 +13083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11853,7 +13098,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11868,7 +13113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11883,7 +13128,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11933,7 +13196,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11945,7 +13208,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11971,7 +13234,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -11981,7 +13244,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11990,7 +13253,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12000,7 +13263,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12013,7 +13276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12022,7 +13285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12031,7 +13294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12060,7 +13323,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12069,7 +13332,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12078,7 +13341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12087,7 +13350,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12105,7 +13380,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12123,7 +13398,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12138,7 +13413,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12154,7 +13429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12169,7 +13444,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12185,7 +13460,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12204,7 +13479,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12219,7 +13494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12234,7 +13509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12281,7 +13556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12296,7 +13571,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12311,7 +13586,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12326,7 +13601,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12369,7 +13662,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12385,7 +13678,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12400,7 +13693,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12416,7 +13709,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12435,7 +13728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12450,7 +13743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12465,7 +13758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12512,7 +13805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12527,7 +13820,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12542,7 +13835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12557,7 +13850,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12577,7 +13888,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12593,7 +13904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12608,7 +13919,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12624,7 +13935,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12643,7 +13954,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12658,7 +13969,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12673,7 +13984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12720,7 +14031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12735,7 +14046,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12750,7 +14061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12765,7 +14076,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12812,7 +14141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12824,7 +14153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12854,7 +14183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12863,7 +14192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12892,7 +14221,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12901,7 +14230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12910,7 +14239,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12928,7 +14269,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12946,7 +14287,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12965,7 +14306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12980,7 +14321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13027,7 +14368,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13042,7 +14383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13057,7 +14398,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13104,7 +14463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13119,7 +14478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13166,7 +14525,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13181,7 +14540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13196,7 +14555,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13220,7 +14597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13235,7 +14612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13282,7 +14659,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13297,7 +14674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13312,7 +14689,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13369,7 +14764,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13381,7 +14776,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13407,7 +14802,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13417,7 +14812,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13426,7 +14821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13435,7 +14830,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13444,7 +14839,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13454,7 +14849,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13464,7 +14859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13473,7 +14868,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13482,7 +14877,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13491,7 +14886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13500,7 +14895,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13509,7 +14904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13518,7 +14913,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13527,7 +14922,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13536,7 +14931,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13545,7 +14940,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13554,7 +14949,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13563,7 +14958,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13572,7 +14967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13581,7 +14976,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13590,7 +14985,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13599,7 +14994,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13612,7 +15007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13621,7 +15016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13630,7 +15025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13659,7 +15054,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13668,7 +15063,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13677,7 +15072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13686,7 +15081,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13704,7 +15111,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13722,7 +15129,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13737,7 +15144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13756,7 +15163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13771,7 +15178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13786,7 +15193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13833,7 +15240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13848,7 +15255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13863,7 +15270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13878,7 +15285,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13901,7 +15326,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13919,7 +15344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13934,7 +15359,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13953,7 +15378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13968,7 +15393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13983,7 +15408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14030,7 +15455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14045,7 +15470,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14060,7 +15485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14075,7 +15500,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14098,7 +15541,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14116,7 +15559,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14131,7 +15574,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -14147,7 +15590,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14162,7 +15605,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14177,7 +15620,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14192,7 +15635,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -14208,7 +15651,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -14224,7 +15667,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14239,7 +15682,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14254,7 +15697,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14269,7 +15712,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14284,7 +15727,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14299,7 +15742,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14314,7 +15757,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14329,7 +15772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14344,7 +15787,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14359,7 +15802,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14374,7 +15817,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14389,7 +15832,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14404,7 +15847,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14419,7 +15862,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14438,7 +15881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14453,7 +15896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14468,7 +15911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14515,7 +15958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14530,7 +15973,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14545,7 +15988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14560,7 +16003,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14603,7 +16064,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -14619,7 +16080,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14634,7 +16095,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14649,7 +16110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14664,7 +16125,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -14680,7 +16141,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -14696,7 +16157,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14711,7 +16172,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14726,7 +16187,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14741,7 +16202,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14756,7 +16217,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14771,7 +16232,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14786,7 +16247,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14801,7 +16262,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14816,7 +16277,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14831,7 +16292,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14846,7 +16307,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14861,7 +16322,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14876,7 +16337,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14891,7 +16352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14910,7 +16371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14925,7 +16386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14940,7 +16401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14987,7 +16448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15002,7 +16463,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15017,7 +16478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15032,7 +16493,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15056,7 +16535,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15071,7 +16550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15086,7 +16565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15133,7 +16612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15148,7 +16627,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15163,7 +16642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15178,7 +16657,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15372,17 +16869,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -15390,38 +16887,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -15434,7 +16931,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -15450,7 +16947,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -15458,12 +16955,12 @@ "System.Security.SecureString": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Threading.Tasks.Task": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task", - "AssemblyQualifiedName": "System.Threading.Tasks.Task, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Threading.Tasks.Task, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.KubernetesRuntime.Models.IBlobStorageClassTypeProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesRuntime.Models", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Mdp.json b/tools/Tools.Common/SerializedCmdlets/Az.Mdp.json index 7912d895dc32..562a954a6f1d 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Mdp.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Mdp.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Mdp", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.1.2", "Cmdlets": [ { "VerbName": "Get", @@ -44,7 +44,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -53,7 +53,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -62,7 +62,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -92,7 +92,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -101,7 +101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -130,7 +130,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -139,7 +139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -148,7 +148,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -166,7 +178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -181,7 +193,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -196,7 +208,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -216,7 +228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -231,7 +243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -278,7 +290,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -293,7 +305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -308,7 +320,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -328,7 +358,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -343,7 +373,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -363,7 +393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -378,7 +408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -425,7 +455,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -440,7 +470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -455,7 +485,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -475,7 +523,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -495,7 +543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -510,7 +558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -557,7 +605,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -572,7 +620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -587,7 +635,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -633,7 +699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -648,7 +714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -695,7 +761,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -710,7 +776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -725,7 +791,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -749,7 +833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -764,7 +848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -811,7 +895,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -826,7 +910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -841,7 +925,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -886,7 +988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -895,7 +997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -904,7 +1006,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -918,7 +1020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -927,7 +1029,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -956,7 +1058,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -965,7 +1067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -974,7 +1076,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -989,7 +1103,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1004,7 +1118,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1019,7 +1133,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1039,7 +1153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1054,7 +1168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1101,7 +1215,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1116,7 +1230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1131,7 +1245,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1181,7 +1313,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1190,7 +1322,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1204,7 +1336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1213,7 +1345,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1242,7 +1374,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1251,7 +1383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1260,7 +1392,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1275,7 +1419,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1290,7 +1434,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1310,7 +1454,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1325,7 +1469,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1372,7 +1516,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1387,7 +1531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1402,7 +1546,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1457,7 +1619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1466,7 +1628,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1475,7 +1637,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1521,7 +1683,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1544,7 +1706,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1553,7 +1715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1574,7 +1736,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1595,7 +1757,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1604,7 +1766,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1613,7 +1775,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1623,7 +1785,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1632,7 +1794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1645,7 +1807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1654,7 +1816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1663,7 +1825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1692,7 +1854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1701,7 +1863,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1710,7 +1872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1719,7 +1881,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1737,7 +1911,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1752,7 +1926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1767,7 +1941,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1782,7 +1956,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1801,7 +1975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1816,7 +1990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1831,7 +2005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1878,7 +2052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1893,7 +2067,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1908,7 +2082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1923,7 +2097,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1946,7 +2138,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1961,7 +2153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1976,7 +2168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1991,7 +2183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2010,7 +2202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2025,7 +2217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2040,7 +2232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2087,7 +2279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2102,7 +2294,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2117,7 +2309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2132,7 +2324,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2155,7 +2365,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2170,7 +2380,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2185,7 +2395,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2200,7 +2410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2235,7 +2445,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2250,7 +2460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2283,7 +2493,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2316,7 +2526,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2331,7 +2541,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2346,7 +2556,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2366,7 +2576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2381,7 +2591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2396,7 +2606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2443,7 +2653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2458,7 +2668,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2473,7 +2683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2488,7 +2698,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2511,7 +2739,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2526,7 +2754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2541,7 +2769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2587,7 +2815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2602,7 +2830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2617,7 +2845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2664,7 +2892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2679,7 +2907,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2694,7 +2922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2709,7 +2937,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2751,7 +2997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2786,7 +3032,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2801,7 +3047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2834,7 +3080,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2867,7 +3113,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2882,7 +3128,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2897,7 +3143,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2917,7 +3163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2932,7 +3178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2947,7 +3193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2994,7 +3240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3009,7 +3255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3024,7 +3270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3039,7 +3285,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3112,7 +3376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3127,7 +3391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3142,7 +3406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3189,7 +3453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3204,7 +3468,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3219,7 +3483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3234,7 +3498,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3258,7 +3540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3273,7 +3555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3288,7 +3570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3335,7 +3617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3350,7 +3632,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3365,7 +3647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3380,7 +3662,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3407,7 +3707,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -3423,7 +3723,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3432,7 +3732,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3441,7 +3741,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3470,7 +3770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3479,7 +3779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3488,7 +3788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3517,7 +3817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3526,7 +3826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3535,7 +3835,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3544,7 +3844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3553,7 +3853,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3571,7 +3883,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3586,7 +3898,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3601,7 +3913,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3620,7 +3932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3635,7 +3947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3650,7 +3962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3697,7 +4009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3712,7 +4024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3727,7 +4039,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3742,7 +4054,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3757,7 +4069,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3803,7 +4133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3818,7 +4148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3833,7 +4163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3880,7 +4210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3895,7 +4225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3910,7 +4240,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3925,7 +4255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3940,7 +4270,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3964,7 +4312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3979,7 +4327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3994,7 +4342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4041,7 +4389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4056,7 +4404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4071,7 +4419,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4086,7 +4434,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4101,7 +4449,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4156,7 +4522,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4165,7 +4531,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4174,7 +4540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4234,7 +4600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4243,7 +4609,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -4267,7 +4633,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4288,7 +4654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4297,7 +4663,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4306,7 +4672,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4320,7 +4686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4329,7 +4695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4338,7 +4704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4367,7 +4733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4376,7 +4742,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4385,7 +4751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4394,7 +4760,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4412,7 +4790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4427,7 +4805,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4442,7 +4820,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4477,7 +4855,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4492,7 +4870,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -4528,7 +4906,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4561,7 +4939,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4576,7 +4954,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4591,7 +4969,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4611,7 +4989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4626,7 +5004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4641,7 +5019,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4688,7 +5066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4703,7 +5081,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4718,7 +5096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4733,7 +5111,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4756,7 +5152,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4771,7 +5167,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4786,7 +5182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4832,7 +5228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4847,7 +5243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4862,7 +5258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4909,7 +5305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4924,7 +5320,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4939,7 +5335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4954,7 +5350,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5016,7 +5430,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5031,7 +5445,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -5067,7 +5481,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5100,7 +5514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5115,7 +5529,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5130,7 +5544,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5150,7 +5564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5165,7 +5579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5180,7 +5594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5227,7 +5641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5242,7 +5656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5257,7 +5671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5272,7 +5686,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5345,7 +5777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5360,7 +5792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5375,7 +5807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5422,7 +5854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5437,7 +5869,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5452,7 +5884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5467,7 +5899,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5491,7 +5941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5506,7 +5956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5521,7 +5971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5568,7 +6018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5583,7 +6033,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5598,7 +6048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5613,7 +6063,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5717,7 +6185,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -5859,17 +6327,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -5877,38 +6345,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuCapabilities]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuCapabilities]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuCapabilities, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuCapabilities, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuCapabilities" ] @@ -5925,7 +6393,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuLocationInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuLocationInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuLocationInfo, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuLocationInfo, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuLocationInfo" ] @@ -5943,7 +6411,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuZoneDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuZoneDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuZoneDetails, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuZoneDetails, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuZoneDetails" ] @@ -5960,7 +6428,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -5968,7 +6436,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuRestrictions]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuRestrictions]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuRestrictions, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuRestrictions, Az.Mdp.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Mdp.Models.IResourceSkuRestrictions" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Migrate.json b/tools/Tools.Common/SerializedCmdlets/Az.Migrate.json index ba7b536e202b..633d2ae1b790 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Migrate.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Migrate.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Migrate", - "ModuleVersion": "2.7.1", + "ModuleVersion": "2.8.0", "Cmdlets": [ { "VerbName": "Get", @@ -9917,6 +9917,1171 @@ } ] }, + { + "VerbName": "Get", + "NounName": "AzMigrateServerMigrationStatus", + "Name": "Get-AzMigrateServerMigrationStatus", + "ClassName": "Get-AzMigrateServerMigrationStatus", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "ListByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject[]", + "AssemblyQualifiedName": "System.Management.Automation.PSObject[], System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "System.Management.Automation.PSObject" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProjectName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplianceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MachineName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Health", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Filter", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SkipToken", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetByApplianceName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ApplianceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetByMachineName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MachineName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetHealthByMachineName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MachineName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Health", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ListByName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SkipToken", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.SendAsyncStep[], Az.Migrate.private, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, { "VerbName": "Get", "NounName": "AzMigrateServerReplication", @@ -30941,6 +32106,11 @@ } ] }, + "System.Management.Automation.PSObject": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.ICriticalJobHistoryDetails[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.ICriticalJobHistoryDetails[]", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.MobileNetwork.json b/tools/Tools.Common/SerializedCmdlets/Az.MobileNetwork.json index dd140e28d181..c4222dcde940 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.MobileNetwork.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.MobileNetwork.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.MobileNetwork", - "ModuleVersion": "0.4.2", + "ModuleVersion": "0.5.0", "Cmdlets": [ { "VerbName": "Deploy", @@ -14,13 +14,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", "EndTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", "PercentComplete": "System.Nullable`1[System.Double]", @@ -44,7 +44,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -53,7 +53,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -62,7 +62,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -71,7 +71,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -101,7 +101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -110,7 +110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -119,7 +119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -128,7 +128,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -138,7 +138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -148,7 +148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -157,7 +157,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -166,7 +166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -175,7 +175,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -190,7 +202,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -205,7 +217,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -220,7 +232,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -239,7 +251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -254,7 +266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -269,7 +281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -284,7 +296,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -300,7 +312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -316,7 +328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -331,7 +343,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -346,7 +358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -361,7 +373,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -381,7 +411,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -417,7 +447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -432,7 +462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -447,7 +477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -462,7 +492,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -478,7 +508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -494,7 +524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -509,7 +539,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -524,7 +554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -539,7 +569,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -563,7 +611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -578,7 +626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -593,7 +641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -608,7 +656,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -624,7 +672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -640,7 +688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -655,7 +703,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -670,7 +718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -685,7 +733,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -710,13 +776,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", "EndTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", "PercentComplete": "System.Nullable`1[System.Double]", @@ -740,7 +806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -749,7 +815,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -758,7 +824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -767,7 +833,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -797,7 +863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -806,7 +872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -815,7 +881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -824,7 +890,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -834,7 +900,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -844,7 +910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -853,7 +919,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -862,7 +928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -871,7 +937,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -886,7 +964,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -901,7 +979,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -916,7 +994,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -935,7 +1013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -950,7 +1028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -965,7 +1043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -980,7 +1058,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -996,7 +1074,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1012,7 +1090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1027,7 +1105,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1042,7 +1120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1057,7 +1135,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1077,7 +1173,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -1113,7 +1209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1128,7 +1224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1143,7 +1239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1158,7 +1254,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1174,7 +1270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1190,7 +1286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1205,7 +1301,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1220,7 +1316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1235,7 +1331,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1259,7 +1373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1274,7 +1388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1289,7 +1403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1304,7 +1418,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1320,7 +1434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1336,7 +1450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1351,7 +1465,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1366,7 +1480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1381,7 +1495,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1406,11 +1538,11 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IMobileNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IMobileNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", + "ProvisioningState": "System.String", "PublicLandMobileNetworkIdentifierMcc": "System.String", "PublicLandMobileNetworkIdentifierMnc": "System.String", "ServiceKey": "System.String" @@ -1430,7 +1562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1439,7 +1571,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1448,7 +1580,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1458,7 +1590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -1488,7 +1620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1497,7 +1629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1506,7 +1638,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1516,7 +1648,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1526,7 +1658,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1535,7 +1667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1544,7 +1676,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1562,7 +1706,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1577,7 +1721,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1592,7 +1736,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1612,7 +1756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1627,7 +1771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1642,7 +1786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1658,7 +1802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1674,7 +1818,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1689,7 +1833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1704,7 +1848,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1724,7 +1886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1739,7 +1901,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1759,7 +1921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1774,7 +1936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1789,7 +1951,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1805,7 +1967,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1821,7 +1983,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1836,7 +1998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1851,28 +2013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1883,107 +2024,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1995,38 +2043,22 @@ ] }, { - "Name": "GetViaIdentity", + "Name": "List", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "SubscriptionId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -2039,7 +2071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2054,7 +2086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2069,7 +2101,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2085,7 +2117,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2101,7 +2133,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2116,7 +2148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2131,7 +2163,191 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2155,7 +2371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2170,7 +2386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2185,7 +2401,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2201,7 +2417,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2217,7 +2433,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2232,7 +2448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2247,7 +2463,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2272,27 +2506,27 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAttachedDataNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAttachedDataNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NaptConfigurationEnabled": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", + "DnsAddress": "System.Collections.Generic.List`1[System.String]", + "UserEquipmentStaticAddressPoolPrefix": "System.Collections.Generic.List`1[System.String]", + "UserEquipmentAddressPoolPrefix": "System.Collections.Generic.List`1[System.String]", + "PortReuseHoldTimeUdp": "System.Nullable`1[System.Int32]", + "PortRangeMinPort": "System.Nullable`1[System.Int32]", + "PortRangeMaxPort": "System.Nullable`1[System.Int32]", "PortReuseHoldTimeTcp": "System.Nullable`1[System.Int32]", - "NaptConfigurationPinholeLimit": "System.Nullable`1[System.Int32]", - "PinholeTimeoutIcmp": "System.Nullable`1[System.Int32]", "PinholeTimeoutTcp": "System.Nullable`1[System.Int32]", + "PinholeTimeoutIcmp": "System.Nullable`1[System.Int32]", + "NaptConfigurationPinholeLimit": "System.Nullable`1[System.Int32]", "PinholeTimeoutUdp": "System.Nullable`1[System.Int32]", - "PortRangeMaxPort": "System.Nullable`1[System.Int32]", - "PortRangeMinPort": "System.Nullable`1[System.Int32]", - "PortReuseHoldTimeUdp": "System.Nullable`1[System.Int32]", - "UserPlaneDataInterfaceIpv4Gateway": "System.String", - "UserPlaneDataInterfaceIpv4Address": "System.String", - "UserPlaneDataInterfaceName": "System.String", "UserPlaneDataInterfaceIpv4Subnet": "System.String", - "UserEquipmentAddressPoolPrefix": "System.String[]", - "UserEquipmentStaticAddressPoolPrefix": "System.String[]", - "DnsAddress": "System.String[]" + "ProvisioningState": "System.String", + "NaptConfigurationEnabled": "System.String", + "UserPlaneDataInterfaceIpv4Address": "System.String", + "UserPlaneDataInterfaceIpv4Gateway": "System.String", + "UserPlaneDataInterfaceName": "System.String" } }, "ParameterSets": [ @@ -2309,7 +2543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2318,7 +2552,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2327,7 +2561,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2336,7 +2570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2345,7 +2579,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2355,7 +2589,59 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -2385,7 +2671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2394,7 +2680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2403,7 +2689,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2413,7 +2699,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2423,7 +2709,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2432,7 +2718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2441,14 +2727,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Get", + "Name": "GetViaIdentityPacketCoreDataPlane", "Parameters": [ { "ParameterMetadata": { @@ -2459,37 +2757,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PacketCoreDataPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2500,33 +2768,34 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PacketCoreDataPlaneInputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -2539,7 +2808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2554,7 +2823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2569,7 +2838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2585,7 +2854,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2601,7 +2870,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2616,7 +2885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2631,7 +2900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2639,34 +2908,40 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "GetViaIdentityPacketCoreControlPlane", + "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCoreDataPlaneName", + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2677,11 +2952,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PacketCoreDataPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2692,18 +2967,34 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "PacketCoreControlPlaneInputObject", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -2716,7 +3007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2731,7 +3022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2746,7 +3037,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2762,7 +3053,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2778,7 +3069,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2793,7 +3084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2808,7 +3099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2816,55 +3107,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2872,76 +3125,83 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "Get", + "Parameters": [ { "ParameterMetadata": { - "Name": "Break", + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "PacketCoreControlPlaneName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "PacketCoreDataPlaneName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -2950,26 +3210,6 @@ "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -2980,7 +3220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2995,7 +3235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3010,7 +3250,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3026,7 +3266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3042,7 +3282,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3057,7 +3297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3072,7 +3312,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3082,182 +3340,32 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzMobileNetworkDataNetwork", - "Name": "Get-AzMobileNetworkDataNetwork", - "ClassName": "Get-AzMobileNetworkDataNetwork", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "Description": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DataNetworkName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { "Name": "List", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3272,7 +3380,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3287,7 +3395,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3307,7 +3415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3322,7 +3430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3337,7 +3445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3353,7 +3461,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3369,7 +3477,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3384,7 +3492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3399,76 +3507,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Get", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DataNetworkName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3479,107 +3518,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3599,7 +3545,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -3635,7 +3581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3650,7 +3596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3665,7 +3611,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3681,7 +3627,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3697,7 +3643,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3712,7 +3658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3727,7 +3673,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3751,7 +3715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3766,7 +3730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3781,7 +3745,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3797,7 +3761,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3813,7 +3777,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3828,7 +3792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3843,7 +3807,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3858,9 +3840,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkPacketCoreControlPlane", - "Name": "Get-AzMobileNetworkPacketCoreControlPlane", - "ClassName": "Get-AzMobileNetworkPacketCoreControlPlane", + "NounName": "AzMobileNetworkDataNetwork", + "Name": "Get-AzMobileNetworkDataNetwork", + "ClassName": "Get-AzMobileNetworkDataNetwork", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -3868,38 +3850,12 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlane", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlane, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PropertiesPlatformAzureStackEdgeDevices": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId[]", - "InteropSetting": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlanePropertiesFormatInteropSettings", - "Site": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "LocalDiagnosticAccessAuthenticationType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "Sku": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "PlatformType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "LocalDiagnosticsAccessHttpsServerCertificateProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState]", - "CoreNetworkTechnology": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType]", - "InstallationState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "UeMtu": "System.Nullable`1[System.Int32]", - "RollbackVersion": "System.String", - "ProvisioningReason": "System.String", - "OperationId": "System.String", - "AzureStackEdgeDeviceId": "System.String", - "IdentityPrincipalId": "System.String", - "HttpsServerCertificateUrl": "System.String", - "CustomLocationId": "System.String", - "ControlPlaneAccessInterfaceName": "System.String", - "ControlPlaneAccessInterfaceIpv4Subnet": "System.String", - "ControlPlaneAccessInterfaceIpv4Gateway": "System.String", - "ControlPlaneAccessInterfaceIpv4Address": "System.String", - "ConnectedClusterId": "System.String", - "AzureStackHciClusterId": "System.String", - "IdentityTenantId": "System.String", - "Version": "System.String" + "Description": "System.String", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -3908,15 +3864,24 @@ } ], "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Name", "AliasList": [ - "PacketCoreControlPlaneName" + "DataNetworkName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3925,7 +3890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3934,7 +3899,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3944,7 +3909,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -3974,7 +3965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3983,7 +3974,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3992,7 +3983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4002,7 +3993,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4012,7 +4003,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4021,7 +4012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4030,25 +4021,34 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Get", + "Name": "List", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "PacketCoreControlPlaneName" - ], + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4063,7 +4063,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4078,7 +4078,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4098,7 +4098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4113,7 +4113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4128,7 +4128,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4144,7 +4144,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4160,7 +4160,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4175,7 +4175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4190,7 +4190,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4202,15 +4220,48 @@ ] }, { - "Name": "List1", + "Name": "Get", "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4225,7 +4276,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4245,7 +4296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4260,7 +4311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4275,7 +4326,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4291,7 +4342,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4307,7 +4358,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4322,7 +4373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4337,7 +4388,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4349,24 +4418,58 @@ ] }, { - "Name": "List", + "Name": "GetViaIdentityMobileNetwork", "Parameters": [ { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -4377,7 +4480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4392,7 +4495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4407,7 +4510,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4423,7 +4526,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4439,7 +4542,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4454,7 +4557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4469,7 +4572,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4489,7 +4610,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -4525,7 +4646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4540,7 +4661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4555,7 +4676,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4571,7 +4692,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4587,7 +4708,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4602,7 +4723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4617,7 +4738,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4641,7 +4780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4656,7 +4795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4671,7 +4810,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4687,7 +4826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4703,7 +4842,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4718,7 +4857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4733,7 +4872,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4748,9 +4905,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkPacketCoreControlPlaneVersion", - "Name": "Get-AzMobileNetworkPacketCoreControlPlaneVersion", - "ClassName": "Get-AzMobileNetworkPacketCoreControlPlaneVersion", + "NounName": "AzMobileNetworkPacketCoreControlPlane", + "Name": "Get-AzMobileNetworkPacketCoreControlPlane", + "ClassName": "Get-AzMobileNetworkPacketCoreControlPlane", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -4758,12 +4915,38 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlaneVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlaneVersion, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Platform": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]" + "InteropSetting": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlanePropertiesFormatInteropSettings", + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "PlatformAzureStackEdgeDevices": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId]", + "Site": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId]", + "UeMtu": "System.Nullable`1[System.Int32]", + "Sku": "System.String", + "RollbackVersion": "System.String", + "ProvisioningState": "System.String", + "ProvisioningReason": "System.String", + "PlatformType": "System.String", + "OperationId": "System.String", + "LocalDiagnosticsAccessHttpsServerCertificateProvisioningState": "System.String", + "LocalDiagnosticAccessAuthenticationType": "System.String", + "InstallationState": "System.String", + "AzureStackEdgeDeviceId": "System.String", + "IdentityTenantId": "System.String", + "IdentityPrincipalId": "System.String", + "HttpsServerCertificateUrl": "System.String", + "CustomLocationId": "System.String", + "CoreNetworkTechnology": "System.String", + "ControlPlaneAccessInterfaceName": "System.String", + "ControlPlaneAccessInterfaceIpv4Subnet": "System.String", + "ControlPlaneAccessInterfaceIpv4Gateway": "System.String", + "ControlPlaneAccessInterfaceIpv4Address": "System.String", + "ConnectedClusterId": "System.String", + "AzureStackHciClusterId": "System.String", + "IdentityType": "System.String", + "Version": "System.String" } }, "ParameterSets": [ @@ -4773,11 +4956,33 @@ ], "Parameters": [ { - "Name": "VersionName", + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -4786,7 +4991,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -4816,7 +5021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4825,7 +5030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4834,7 +5039,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4844,7 +5049,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4854,7 +5059,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4863,7 +5068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4872,7 +5077,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4883,11 +5100,14 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "VersionName", + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4896,6 +5116,37 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -4906,7 +5157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4921,7 +5172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4936,7 +5187,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4952,7 +5203,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4968,7 +5219,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4983,7 +5234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4998,7 +5249,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5010,38 +5279,37 @@ ] }, { - "Name": "GetViaIdentity", + "Name": "List1", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -5054,7 +5322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5069,7 +5337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5084,7 +5352,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5100,7 +5368,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5116,7 +5384,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5131,7 +5399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5146,7 +5414,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5158,8 +5444,24 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "List", "Parameters": [ + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5170,7 +5472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5185,7 +5487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5200,7 +5502,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5216,7 +5518,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5232,7 +5534,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5247,7 +5549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5262,7 +5564,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5272,234 +5592,145 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzMobileNetworkPacketCoreDataPlane", - "Name": "Get-AzMobileNetworkPacketCoreDataPlane", - "ClassName": "Get-AzMobileNetworkPacketCoreDataPlane", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreDataPlane", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreDataPlane, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "UserPlaneAccessInterfaceIpv4Address": "System.String", - "UserPlaneAccessInterfaceIpv4Gateway": "System.String", - "UserPlaneAccessInterfaceIpv4Subnet": "System.String", - "UserPlaneAccessInterfaceName": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "PacketCoreDataPlaneName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Get", + "Name": "GetViaIdentity", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ - "PacketCoreDataPlaneName" + "AzureRMContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5508,6 +5739,29 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5518,7 +5772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5533,7 +5787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5548,7 +5802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5564,7 +5818,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5580,7 +5834,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5595,7 +5849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5610,7 +5864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5618,34 +5872,183 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzMobileNetworkPacketCoreControlPlaneVersion", + "Name": "Get-AzMobileNetworkPacketCoreControlPlaneVersion", + "ClassName": "Get-AzMobileNetworkPacketCoreControlPlaneVersion", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "List", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlaneVersion", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlaneVersion, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Platform": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform]", + "ProvisioningState": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "VersionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Get", + "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VersionName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5654,22 +6057,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5680,7 +6067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5695,7 +6082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5710,7 +6097,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5726,7 +6113,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5742,7 +6129,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5757,7 +6144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5772,7 +6159,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5792,7 +6197,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -5828,7 +6233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5843,7 +6248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5858,7 +6263,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5874,7 +6279,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5890,7 +6295,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5905,7 +6310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5920,7 +6325,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5944,7 +6367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5959,7 +6382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5974,7 +6397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5990,7 +6413,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6006,7 +6429,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6021,7 +6444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6036,7 +6459,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6051,9 +6492,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkService", - "Name": "Get-AzMobileNetworkService", - "ClassName": "Get-AzMobileNetworkService", + "NounName": "AzMobileNetworkPacketCoreDataPlane", + "Name": "Get-AzMobileNetworkPacketCoreDataPlane", + "ClassName": "Get-AzMobileNetworkPacketCoreDataPlane", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -6061,19 +6502,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IService, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PccRule": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "Precedence": "System.Int32", - "QoPolicyPreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "QoPolicyPreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "QoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", - "QoPolicyFiveQi": "System.Nullable`1[System.Int32]", - "MaximumBitRateDownlink": "System.String", - "MaximumBitRateUplink": "System.String" + "ProvisioningState": "System.String", + "UserPlaneAccessInterfaceIpv4Address": "System.String", + "UserPlaneAccessInterfaceIpv4Gateway": "System.String", + "UserPlaneAccessInterfaceIpv4Subnet": "System.String", + "UserPlaneAccessInterfaceName": "System.String" } }, "ParameterSets": [ @@ -6083,23 +6520,23 @@ ], "Parameters": [ { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6108,7 +6545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6117,7 +6554,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6127,7 +6564,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -6157,7 +6620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6166,7 +6629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6175,7 +6638,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6185,7 +6648,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6195,7 +6658,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6204,7 +6667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6213,22 +6676,236 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "List", + "Name": "GetViaIdentityPacketCoreControlPlane", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6243,7 +6920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6258,7 +6935,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6278,7 +6955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6293,7 +6970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6308,7 +6985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6324,7 +7001,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6340,7 +7017,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6355,7 +7032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6370,7 +7047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6378,37 +7055,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Get", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "List", + "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6423,7 +7100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6438,7 +7115,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6458,7 +7135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6473,7 +7150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6488,7 +7165,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6504,7 +7181,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6520,7 +7197,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6535,7 +7212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6550,7 +7227,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6570,7 +7265,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -6606,7 +7301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6621,7 +7316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6636,7 +7331,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6652,7 +7347,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6668,7 +7363,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6683,7 +7378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6698,7 +7393,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6722,7 +7435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6737,7 +7450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6752,7 +7465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6768,7 +7481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6784,7 +7497,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6799,7 +7512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6814,7 +7527,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6829,9 +7560,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkSim", - "Name": "Get-AzMobileNetworkSim", - "ClassName": "Get-AzMobileNetworkSim", + "NounName": "AzMobileNetworkService", + "Name": "Get-AzMobileNetworkService", + "ClassName": "Get-AzMobileNetworkService", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -6839,22 +7570,19 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISim", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISim, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StaticIPConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState]", - "AuthenticationKey": "System.String", - "DeviceType": "System.String", - "IntegratedCircuitCardIdentifier": "System.String", - "InternationalMobileSubscriberIdentity": "System.String", - "OperatorKeyCode": "System.String", - "PolicyId": "System.String", - "VendorKeyFingerprint": "System.String", - "VendorName": "System.String" + "PccRule": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration]", + "Precedence": "System.Int32", + "QoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", + "QoPolicyFiveQi": "System.Nullable`1[System.Int32]", + "MaximumBitRateDownlink": "System.String", + "MaximumBitRateUplink": "System.String", + "ProvisioningState": "System.String", + "QoPolicyPreemptionCapability": "System.String", + "QoPolicyPreemptionVulnerability": "System.String" } }, "ParameterSets": [ @@ -6864,26 +7592,23 @@ ], "Parameters": [ { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "Name", "AliasList": [ - "SimName" + "ServiceName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6892,7 +7617,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6901,7 +7626,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6911,7 +7636,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -6941,7 +7692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6950,7 +7701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6959,7 +7710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6969,7 +7720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6979,7 +7730,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6988,7 +7739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6997,7 +7748,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7008,14 +7771,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7030,7 +7790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7045,7 +7805,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7065,7 +7825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7080,7 +7840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7095,7 +7855,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7111,7 +7871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7127,7 +7887,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7142,7 +7902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7157,7 +7917,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7173,14 +7951,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7193,12 +7968,12 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "SimName" + "ServiceName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7213,7 +7988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7228,7 +8003,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7248,7 +8023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7263,7 +8038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7278,7 +8053,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7294,7 +8069,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7310,7 +8085,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7325,7 +8100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7340,7 +8115,209 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7360,7 +8337,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -7396,7 +8373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7411,7 +8388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7426,7 +8403,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7442,7 +8419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7458,7 +8435,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7473,7 +8450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7488,7 +8465,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7512,7 +8507,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7527,7 +8522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7542,7 +8537,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7558,7 +8553,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7574,7 +8569,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7589,7 +8584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7604,7 +8599,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7619,9 +8632,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkSimGroup", - "Name": "Get-AzMobileNetworkSimGroup", - "ClassName": "Get-AzMobileNetworkSimGroup", + "NounName": "AzMobileNetworkSim", + "Name": "Get-AzMobileNetworkSim", + "ClassName": "Get-AzMobileNetworkSim", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -7629,17 +8642,22 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimGroup, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "EncryptionKeyUrl": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "MobileNetworkId": "System.String" + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "StaticIPConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]", + "AuthenticationKey": "System.String", + "DeviceType": "System.String", + "IntegratedCircuitCardIdentifier": "System.String", + "InternationalMobileSubscriberIdentity": "System.String", + "OperatorKeyCode": "System.String", + "PolicyId": "System.String", + "ProvisioningState": "System.String", + "State": "System.String", + "VendorKeyFingerprint": "System.String", + "VendorName": "System.String" } }, "ParameterSets": [ @@ -7649,14 +8667,26 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "GroupName", "AliasList": [ "SimGroupName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7665,7 +8695,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7674,7 +8704,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7684,7 +8714,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -7714,7 +8770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7723,7 +8779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7732,7 +8788,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7742,7 +8798,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7752,7 +8808,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7761,7 +8817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7770,25 +8826,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Get", + "Name": "List", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "GroupName", "AliasList": [ "SimGroupName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7803,7 +8871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7818,7 +8886,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7838,7 +8906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7853,7 +8921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7868,7 +8936,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7884,7 +8952,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7900,7 +8968,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7915,7 +8983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7930,7 +8998,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7942,15 +9028,51 @@ ] }, { - "Name": "List1", + "Name": "Get", "Parameters": [ + { + "ParameterMetadata": { + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7965,7 +9087,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7985,7 +9107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8000,7 +9122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8015,7 +9137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8031,7 +9153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8047,7 +9169,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8062,7 +9184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8077,7 +9199,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8089,24 +9229,58 @@ ] }, { - "Name": "List", + "Name": "GetViaIdentitySimGroup", "Parameters": [ { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Name", + "AliasList": [ + "SimName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -8117,7 +9291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8132,7 +9306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8147,7 +9321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8163,7 +9337,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8179,7 +9353,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8194,7 +9368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8209,7 +9383,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8229,7 +9421,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -8265,7 +9457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8280,7 +9472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8295,7 +9487,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8311,7 +9503,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8327,7 +9519,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8342,7 +9534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8357,7 +9549,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8381,7 +9591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8396,7 +9606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8411,7 +9621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8427,7 +9637,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8443,7 +9653,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8458,7 +9668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8473,7 +9683,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8488,9 +9716,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkSimPolicy", - "Name": "Get-AzMobileNetworkSimPolicy", - "ClassName": "Get-AzMobileNetworkSimPolicy", + "NounName": "AzMobileNetworkSimGroup", + "Name": "Get-AzMobileNetworkSimGroup", + "ClassName": "Get-AzMobileNetworkSimGroup", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -8498,18 +9726,17 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimPolicy, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "SliceConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "RegistrationTimer": "System.Nullable`1[System.Int32]", - "RfspIndex": "System.Nullable`1[System.Int32]", - "DefaultSlouseId": "System.String", - "UeAmbrDownlink": "System.String", - "UeAmbrUplink": "System.String" + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "EncryptionKeyUrl": "System.String", + "IdentityPrincipalId": "System.String", + "IdentityTenantId": "System.String", + "IdentityType": "System.String", + "MobileNetworkId": "System.String", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -8518,24 +9745,15 @@ } ], "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Name", "AliasList": [ - "SimPolicyName" + "SimGroupName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8544,7 +9762,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8553,7 +9771,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8563,7 +9781,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -8593,7 +9811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8602,7 +9820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8611,7 +9829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8621,7 +9839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8631,7 +9849,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8640,7 +9858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8649,22 +9867,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "List", + "Name": "Get", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8679,7 +9912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8694,7 +9927,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8714,7 +9947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8729,7 +9962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8744,7 +9977,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8760,7 +9993,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8776,7 +10009,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8791,7 +10024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8806,7 +10039,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8818,15 +10069,15 @@ ] }, { - "Name": "Get", + "Name": "List1", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8837,44 +10088,161 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ - "SimPolicyName" + "AzureRMContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8894,7 +10262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8909,7 +10277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8924,7 +10292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8940,7 +10308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8956,7 +10324,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8971,7 +10339,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8986,7 +10354,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9006,7 +10392,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -9042,7 +10428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9057,7 +10443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9072,7 +10458,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9088,7 +10474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9104,7 +10490,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9119,7 +10505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9134,7 +10520,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9158,7 +10562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9173,7 +10577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9188,7 +10592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9204,7 +10608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9220,7 +10624,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9235,7 +10639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9250,7 +10654,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9265,9 +10687,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkSite", - "Name": "Get-AzMobileNetworkSite", - "ClassName": "Get-AzMobileNetworkSite", + "NounName": "AzMobileNetworkSimPolicy", + "Name": "Get-AzMobileNetworkSimPolicy", + "ClassName": "Get-AzMobileNetworkSimPolicy", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -9275,12 +10697,18 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISite", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISite, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkFunction": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]" + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "SliceConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration]", + "RegistrationTimer": "System.Nullable`1[System.Int32]", + "RfspIndex": "System.Nullable`1[System.Int32]", + "DefaultSlouseId": "System.String", + "ProvisioningState": "System.String", + "UeAmbrDownlink": "System.String", + "UeAmbrUplink": "System.String" } }, "ParameterSets": [ @@ -9294,19 +10722,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "Name", "AliasList": [ - "SiteName" + "SimPolicyName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9315,7 +10743,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9324,7 +10752,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -9334,7 +10762,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -9364,7 +10818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9373,7 +10827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9382,7 +10836,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9392,7 +10846,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9402,7 +10856,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9411,7 +10865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9420,7 +10874,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9435,7 +10901,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9450,7 +10916,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9465,7 +10931,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -9485,7 +10951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9500,7 +10966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9515,7 +10981,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9531,7 +10997,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9547,7 +11013,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9562,7 +11028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9577,7 +11043,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9597,7 +11081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9610,12 +11094,12 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "SiteName" + "SimPolicyName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9630,7 +11114,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9645,7 +11129,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -9665,7 +11149,191 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9680,7 +11348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9695,7 +11363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9711,7 +11379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9727,7 +11395,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9742,7 +11410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9757,7 +11425,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9777,7 +11463,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -9813,7 +11499,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9828,7 +11514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9843,7 +11529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9859,7 +11545,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9875,7 +11561,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9890,7 +11576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9905,7 +11591,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9929,7 +11633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9944,7 +11648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9959,7 +11663,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9975,7 +11679,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9991,7 +11695,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10006,7 +11710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10021,7 +11725,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10036,9 +11758,9 @@ }, { "VerbName": "Get", - "NounName": "AzMobileNetworkSlice", - "Name": "Get-AzMobileNetworkSlice", - "ClassName": "Get-AzMobileNetworkSlice", + "NounName": "AzMobileNetworkSite", + "Name": "Get-AzMobileNetworkSite", + "ClassName": "Get-AzMobileNetworkSite", "SupportsShouldProcess": false, "ConfirmImpact": 0, "SupportsPaging": false, @@ -10046,14 +11768,12 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISlice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISlice, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SnssaiSst": "System.Int32", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "Description": "System.String", - "SnssaiSd": "System.String" + "NetworkFunction": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource]", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -10067,25 +11787,28 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SiteName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SliceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10094,7 +11817,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10104,7 +11827,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -10134,7 +11883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10143,7 +11892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10152,7 +11901,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10162,7 +11911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10172,7 +11921,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10181,7 +11930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10190,7 +11939,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10205,7 +11966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10220,7 +11981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10235,7 +11996,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10255,7 +12016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10270,7 +12031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10285,7 +12046,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10301,7 +12062,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10317,7 +12078,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10332,7 +12093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10347,7 +12108,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10367,7 +12146,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10378,11 +12157,14 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SiteName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10393,11 +12175,11 @@ }, { "ParameterMetadata": { - "Name": "SliceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10412,7 +12194,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10432,7 +12214,191 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10447,7 +12413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10462,7 +12428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10478,7 +12444,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10494,7 +12460,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10509,7 +12475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10524,7 +12490,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10544,7 +12528,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -10580,7 +12564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10595,7 +12579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10610,7 +12594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10626,7 +12610,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10642,7 +12626,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10657,7 +12641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10672,7 +12656,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10696,7 +12698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10711,7 +12713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10726,7 +12728,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10742,7 +12744,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10758,7 +12760,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10773,7 +12775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10788,7 +12790,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10802,25 +12822,25 @@ ] }, { - "VerbName": "New", - "NounName": "AzMobileNetwork", - "Name": "New-AzMobileNetwork", - "ClassName": "New-AzMobileNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + "VerbName": "Get", + "NounName": "AzMobileNetworkSlice", + "Name": "Get-AzMobileNetworkSlice", + "ClassName": "Get-AzMobileNetworkSlice", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", + "DefaultParameterSetName": "List", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IMobileNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IMobileNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "PublicLandMobileNetworkIdentifierMcc": "System.String", - "PublicLandMobileNetworkIdentifierMnc": "System.String", - "ServiceKey": "System.String" + "SnssaiSst": "System.Int32", + "Description": "System.String", + "ProvisioningState": "System.String", + "SnssaiSd": "System.String" } }, "ParameterSets": [ @@ -10830,14 +12850,11 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "MobileNetworkName" - ], + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10846,52 +12863,78 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "SliceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicLandMobileNetworkIdentifierMcc", + "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicLandMobileNetworkIdentifierMnc", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "MobileNetworkInputObject", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -10904,16 +12947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10922,7 +12956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10931,7 +12965,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10941,26 +12975,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10969,7 +12994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10978,25 +13003,34 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "List", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "MobileNetworkName" - ], + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11011,7 +13045,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11025,8 +13059,9 @@ "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -11037,56 +13072,92 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicLandMobileNetworkIdentifierMcc", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicLandMobileNetworkIdentifierMnc", + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ProxyCredential", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11097,15 +13168,29 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11113,14 +13198,65 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -11131,11 +13267,15 @@ }, { "ParameterMetadata": { - "Name": "Break", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11146,12 +13286,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11162,11 +13301,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11178,11 +13317,12 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -11197,7 +13337,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11212,7 +13352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11227,7 +13367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11235,382 +13375,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkAttachedDataNetwork", - "Name": "New-AzMobileNetworkAttachedDataNetwork", - "ClassName": "New-AzMobileNetworkAttachedDataNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAttachedDataNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAttachedDataNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NaptConfigurationEnabled": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "PortReuseHoldTimeTcp": "System.Nullable`1[System.Int32]", - "NaptConfigurationPinholeLimit": "System.Nullable`1[System.Int32]", - "PinholeTimeoutIcmp": "System.Nullable`1[System.Int32]", - "PinholeTimeoutTcp": "System.Nullable`1[System.Int32]", - "PinholeTimeoutUdp": "System.Nullable`1[System.Int32]", - "PortRangeMaxPort": "System.Nullable`1[System.Int32]", - "PortRangeMinPort": "System.Nullable`1[System.Int32]", - "PortReuseHoldTimeUdp": "System.Nullable`1[System.Int32]", - "UserPlaneDataInterfaceIpv4Gateway": "System.String", - "UserPlaneDataInterfaceIpv4Address": "System.String", - "UserPlaneDataInterfaceName": "System.String", - "UserPlaneDataInterfaceIpv4Subnet": "System.String", - "UserEquipmentAddressPoolPrefix": "System.String[]", - "UserEquipmentStaticAddressPoolPrefix": "System.String[]", - "DnsAddress": "System.String[]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AttachedDataNetworkName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreDataPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DnsAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NaptConfigurationEnabled", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NaptConfigurationPinholeLimit", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PinholeTimeoutIcmp", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PinholeTimeoutTcp", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PinholeTimeoutUdp", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PortRangeMaxPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PortRangeMinPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PortReuseHoldTimeTcp", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PortReuseHoldTimeUdp", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserEquipmentAddressPoolPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserEquipmentStaticAddressPoolPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ProgressAction", "AliasList": [ - "AttachedDataNetworkName" + "proga" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "GetViaIdentityMobileNetwork", + "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "SliceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11621,41 +13416,62 @@ }, { "ParameterMetadata": { - "Name": "PacketCoreDataPlaneName", + "Name": "MobileNetworkInputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11666,42 +13482,43 @@ }, { "ParameterMetadata": { - "Name": "DnsAddress", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NaptConfigurationEnabled", + "Name": "Proxy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11712,11 +13529,11 @@ }, { "ParameterMetadata": { - "Name": "NaptConfigurationPinholeLimit", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11727,11 +13544,11 @@ }, { "ParameterMetadata": { - "Name": "PinholeTimeoutIcmp", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11742,11 +13559,14 @@ }, { "ParameterMetadata": { - "Name": "PinholeTimeoutTcp", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11754,29 +13574,55 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "GetViaIdentity", + "Parameters": [ { "ParameterMetadata": { - "Name": "PinholeTimeoutUdp", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PortRangeMaxPort", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11787,11 +13633,11 @@ }, { "ParameterMetadata": { - "Name": "PortRangeMinPort", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11802,11 +13648,12 @@ }, { "ParameterMetadata": { - "Name": "PortReuseHoldTimeTcp", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -11817,11 +13664,12 @@ }, { "ParameterMetadata": { - "Name": "PortReuseHoldTimeUdp", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -11832,11 +13680,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Proxy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11847,12 +13695,11 @@ }, { "ParameterMetadata": { - "Name": "UserEquipmentAddressPoolPrefix", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11863,12 +13710,11 @@ }, { "ParameterMetadata": { - "Name": "UserEquipmentStaticAddressPoolPrefix", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11879,11 +13725,14 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Address", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11891,78 +13740,23 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11977,7 +13771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11992,7 +13786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12008,7 +13802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12020,11 +13814,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12035,11 +13829,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12050,11 +13844,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12065,11 +13859,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12084,9 +13881,9 @@ }, { "VerbName": "New", - "NounName": "AzMobileNetworkDataNetwork", - "Name": "New-AzMobileNetworkDataNetwork", - "ClassName": "New-AzMobileNetworkDataNetwork", + "NounName": "AzMobileNetwork", + "Name": "New-AzMobileNetwork", + "ClassName": "New-AzMobileNetwork", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -12094,12 +13891,14 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "Description": "System.String" + "ProvisioningState": "System.String", + "PublicLandMobileNetworkIdentifierMcc": "System.String", + "PublicLandMobileNetworkIdentifierMnc": "System.String", + "ServiceKey": "System.String" } }, "ParameterSets": [ @@ -12109,59 +13908,85 @@ ], "Parameters": [ { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "MobileNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "DataNetworkName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubscriptionId", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "PublicLandMobileNetworkIdentifierMcc", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Description", + "Name": "PublicLandMobileNetworkIdentifierMnc", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12170,7 +13995,25 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12183,7 +14026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12192,7 +14035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12201,7 +14044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12210,7 +14053,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12220,7 +14063,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12230,7 +14073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12239,7 +14082,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12248,7 +14091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12257,40 +14100,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonString", "Parameters": [ - { - "ParameterMetadata": { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "DataNetworkName" + "MobileNetworkName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12305,7 +14145,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12320,7 +14160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12331,11 +14171,11 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12344,36 +14184,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -12384,7 +14194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12399,7 +14209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12414,7 +14224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12429,7 +14239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12445,7 +14255,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12461,7 +14271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12476,7 +14286,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12491,7 +14301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12506,7 +14316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12514,247 +14324,40 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkDataNetworkConfigurationObject", - "Name": "New-AzMobileNetworkDataNetworkConfigurationObject", - "ClassName": "New-AzMobileNetworkDataNetworkConfigurationObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.DataNetworkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.DataNetworkConfiguration, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowedService": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[]", - "AdditionalAllowedSessionType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[]", - "DefaultSessionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType]", - "PreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "PreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "AllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", - "FiveQi": "System.Nullable`1[System.Int32]", - "MaximumNumberOfBufferedPacket": "System.Nullable`1[System.Int32]", - "DataNetworkId": "System.String", - "SessionAmbrDownlink": "System.String", - "SessionAmbrUplink": "System.String" }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" - }, - { - "Name": "ToJsonString", - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } ] - } - ], - "Parameters": [ - { - "Name": "AllowedService", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DataNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SessionAmbrDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SessionAmbrUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AdditionalAllowedSessionType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AllocationAndRetentionPriorityLevel", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultSessionType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FiveQi", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaximumNumberOfBufferedPacket", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PreemptionCapability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "PreemptionVulnerability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "AllowedService", + "Name": "Name", + "AliasList": [ + "MobileNetworkName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12765,11 +14368,11 @@ }, { "ParameterMetadata": { - "Name": "DataNetworkId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12780,26 +14383,26 @@ }, { "ParameterMetadata": { - "Name": "SessionAmbrDownlink", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SessionAmbrUplink", + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12810,12 +14413,15 @@ }, { "ParameterMetadata": { - "Name": "AdditionalAllowedSessionType", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12826,11 +14432,11 @@ }, { "ParameterMetadata": { - "Name": "AllocationAndRetentionPriorityLevel", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12841,11 +14447,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultSessionType", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12856,11 +14462,12 @@ }, { "ParameterMetadata": { - "Name": "FiveQi", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -12871,11 +14478,42 @@ }, { "ParameterMetadata": { - "Name": "MaximumNumberOfBufferedPacket", + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12886,11 +14524,26 @@ }, { "ParameterMetadata": { - "Name": "PreemptionCapability", + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12901,11 +14554,14 @@ }, { "ParameterMetadata": { - "Name": "PreemptionVulnerability", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12915,383 +14571,20 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkPacketCoreControlPlane", - "Name": "New-AzMobileNetworkPacketCoreControlPlane", - "ClassName": "New-AzMobileNetworkPacketCoreControlPlane", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlane", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlane, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropertiesPlatformAzureStackEdgeDevices": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId[]", - "InteropSetting": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlanePropertiesFormatInteropSettings", - "Site": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "LocalDiagnosticAccessAuthenticationType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "Sku": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "PlatformType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "LocalDiagnosticsAccessHttpsServerCertificateProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState]", - "CoreNetworkTechnology": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType]", - "InstallationState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "UeMtu": "System.Nullable`1[System.Int32]", - "RollbackVersion": "System.String", - "ProvisioningReason": "System.String", - "OperationId": "System.String", - "AzureStackEdgeDeviceId": "System.String", - "IdentityPrincipalId": "System.String", - "HttpsServerCertificateUrl": "System.String", - "CustomLocationId": "System.String", - "ControlPlaneAccessInterfaceName": "System.String", - "ControlPlaneAccessInterfaceIpv4Subnet": "System.String", - "ControlPlaneAccessInterfaceIpv4Gateway": "System.String", - "ControlPlaneAccessInterfaceIpv4Address": "System.String", - "ConnectedClusterId": "System.String", - "AzureStackHciClusterId": "System.String", - "IdentityTenantId": "System.String", - "Version": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "PacketCoreControlPlaneName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LocalDiagnosticAccessAuthenticationType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PlatformType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Site", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AzureStackEdgeDeviceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AzureStackHciClusterId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ConnectedClusterId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CoreNetworkTechnology", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CustomLocationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpsServerCertificateUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InteropSetting", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UeMtu", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Version", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "PacketCoreControlPlaneName" + "MobileNetworkName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13306,7 +14599,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13321,7 +14614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13330,43 +14623,13 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "LocalDiagnosticAccessAuthenticationType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PlatformType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13377,12 +14640,11 @@ }, { "ParameterMetadata": { - "Name": "Site", + "Name": "PublicLandMobileNetworkIdentifierMcc", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13393,11 +14655,11 @@ }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "PublicLandMobileNetworkIdentifierMnc", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13408,11 +14670,11 @@ }, { "ParameterMetadata": { - "Name": "AzureStackEdgeDeviceId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13423,11 +14685,15 @@ }, { "ParameterMetadata": { - "Name": "AzureStackHciClusterId", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13438,11 +14704,11 @@ }, { "ParameterMetadata": { - "Name": "ConnectedClusterId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13453,11 +14719,11 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13468,11 +14734,12 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -13483,11 +14750,12 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -13498,11 +14766,11 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceName", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13513,11 +14781,11 @@ }, { "ParameterMetadata": { - "Name": "CoreNetworkTechnology", + "Name": "Proxy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13528,11 +14796,11 @@ }, { "ParameterMetadata": { - "Name": "CustomLocationId", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13543,11 +14811,11 @@ }, { "ParameterMetadata": { - "Name": "HttpsServerCertificateUrl", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13558,11 +14826,14 @@ }, { "ParameterMetadata": { - "Name": "IdentityType", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13570,74 +14841,96 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "IdentityUserAssignedIdentity", + "Name": "InputObject", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InteropSetting", + "Name": "Location", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "PublicLandMobileNetworkIdentifierMcc", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UeMtu", + "Name": "PublicLandMobileNetworkIdentifierMnc", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Version", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13656,7 +14949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13671,7 +14964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13686,7 +14979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13701,7 +14994,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13717,7 +15010,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13733,7 +15026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13748,7 +15041,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13763,7 +15056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13778,7 +15071,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13788,65 +15099,250 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkPacketCoreDataPlane", - "Name": "New-AzMobileNetworkPacketCoreDataPlane", - "ClassName": "New-AzMobileNetworkPacketCoreDataPlane", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreDataPlane", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreDataPlane, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "UserPlaneAccessInterfaceIpv4Address": "System.String", - "UserPlaneAccessInterfaceIpv4Gateway": "System.String", - "UserPlaneAccessInterfaceIpv4Subnet": "System.String", - "UserPlaneAccessInterfaceName": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "PacketCoreDataPlaneName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", - "Type": { + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkAttachedDataNetwork", + "Name": "New-AzMobileNetworkAttachedDataNetwork", + "ClassName": "New-AzMobileNetworkAttachedDataNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsAddress": "System.Collections.Generic.List`1[System.String]", + "UserEquipmentStaticAddressPoolPrefix": "System.Collections.Generic.List`1[System.String]", + "UserEquipmentAddressPoolPrefix": "System.Collections.Generic.List`1[System.String]", + "PortReuseHoldTimeUdp": "System.Nullable`1[System.Int32]", + "PortRangeMinPort": "System.Nullable`1[System.Int32]", + "PortRangeMaxPort": "System.Nullable`1[System.Int32]", + "PortReuseHoldTimeTcp": "System.Nullable`1[System.Int32]", + "PinholeTimeoutTcp": "System.Nullable`1[System.Int32]", + "PinholeTimeoutIcmp": "System.Nullable`1[System.Int32]", + "NaptConfigurationPinholeLimit": "System.Nullable`1[System.Int32]", + "PinholeTimeoutUdp": "System.Nullable`1[System.Int32]", + "UserPlaneDataInterfaceIpv4Subnet": "System.String", + "ProvisioningState": "System.String", + "NaptConfigurationEnabled": "System.String", + "UserPlaneDataInterfaceIpv4Address": "System.String", + "UserPlaneDataInterfaceIpv4Gateway": "System.String", + "UserPlaneDataInterfaceName": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13855,7 +15351,95 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -13864,7 +15448,88 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13873,43 +15538,81 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneAccessInterfaceIpv4Address", + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Address", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Name": "UserPlaneDataInterfaceIpv4Gateway", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Name": "UserPlaneDataInterfaceIpv4Subnet", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneAccessInterfaceName", + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13922,7 +15625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13931,7 +15634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13940,7 +15643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13949,7 +15652,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13959,7 +15662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13969,7 +15672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13978,7 +15681,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13987,7 +15690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13996,25 +15699,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "PacketCoreDataPlaneName" + "AttachedDataNetworkName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14029,7 +15744,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14040,11 +15755,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PacketCoreDataPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14055,26 +15770,11 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14085,56 +15785,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14145,15 +15800,15 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceName", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -14168,7 +15823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14183,7 +15838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14198,7 +15853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14213,7 +15868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14229,7 +15884,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14245,7 +15900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14260,7 +15915,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14275,7 +15930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14290,7 +15945,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14300,253 +15973,20 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkPccRuleConfigurationObject", - "Name": "New-AzMobileNetworkPccRuleConfigurationObject", - "ClassName": "New-AzMobileNetworkPccRuleConfigurationObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.PccRuleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.PccRuleConfiguration, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ServiceDataFlowTemplate": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[]", - "RulePrecedence": "System.Int32", - "RuleQoPolicyPreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "RuleQoPolicyPreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "TrafficControl": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission]", - "RuleQoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", - "RuleQoPolicyFiveQi": "System.Nullable`1[System.Int32]", - "GuaranteedBitRateDownlink": "System.String", - "GuaranteedBitRateUplink": "System.String", - "RuleName": "System.String", - "RuleQoPolicyMaximumBitRateDownlink": "System.String", - "RuleQoPolicyMaximumBitRateUplink": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - { - "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": "RuleName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RulePrecedence", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceDataFlowTemplate", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GuaranteedBitRateDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GuaranteedBitRateUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleQoPolicyAllocationAndRetentionPriorityLevel", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleQoPolicyFiveQi", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleQoPolicyMaximumBitRateDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleQoPolicyMaximumBitRateUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleQoPolicyPreemptionCapability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "RuleQoPolicyPreemptionVulnerability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TrafficControl", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "RuleName", + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14557,11 +15997,11 @@ }, { "ParameterMetadata": { - "Name": "RulePrecedence", + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14572,12 +16012,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceDataFlowTemplate", + "Name": "PacketCoreDataPlaneName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14588,26 +16027,26 @@ }, { "ParameterMetadata": { - "Name": "GuaranteedBitRateDownlink", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GuaranteedBitRateUplink", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14618,26 +16057,30 @@ }, { "ParameterMetadata": { - "Name": "RuleQoPolicyAllocationAndRetentionPriorityLevel", + "Name": "JsonFilePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleQoPolicyFiveQi", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14648,11 +16091,11 @@ }, { "ParameterMetadata": { - "Name": "RuleQoPolicyMaximumBitRateDownlink", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14663,11 +16106,11 @@ }, { "ParameterMetadata": { - "Name": "RuleQoPolicyMaximumBitRateUplink", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14678,11 +16121,12 @@ }, { "ParameterMetadata": { - "Name": "RuleQoPolicyPreemptionCapability", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -14693,11 +16137,12 @@ }, { "ParameterMetadata": { - "Name": "RuleQoPolicyPreemptionVulnerability", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -14708,11 +16153,11 @@ }, { "ParameterMetadata": { - "Name": "TrafficControl", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14720,321 +16165,62 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkService", - "Name": "New-AzMobileNetworkService", - "ClassName": "New-AzMobileNetworkService", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IService, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PccRule": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "Precedence": "System.Int32", - "QoPolicyPreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "QoPolicyPreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "QoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", - "QoPolicyFiveQi": "System.Nullable`1[System.Int32]", - "MaximumBitRateDownlink": "System.String", - "MaximumBitRateUplink": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PccRule", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServicePrecedence", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaximumBitRateDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaximumBitRateUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyFiveQi", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyPreemptionCapability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyPreemptionVulnerability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15042,14 +16228,22 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CreateViaIdentityPacketCoreDataPlaneExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15060,12 +16254,44 @@ }, { "ParameterMetadata": { - "Name": "PccRule", + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsAddress", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -15076,11 +16302,11 @@ }, { "ParameterMetadata": { - "Name": "ServicePrecedence", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15091,11 +16317,11 @@ }, { "ParameterMetadata": { - "Name": "MaximumBitRateDownlink", + "Name": "NaptConfigurationEnabled", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15106,11 +16332,11 @@ }, { "ParameterMetadata": { - "Name": "MaximumBitRateUplink", + "Name": "NaptConfigurationPinholeLimit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15121,11 +16347,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Name": "PinholeTimeoutIcmp", "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15136,11 +16362,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyFiveQi", + "Name": "PinholeTimeoutTcp", "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15151,11 +16377,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyPreemptionCapability", + "Name": "PinholeTimeoutUdp", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15166,11 +16392,56 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyPreemptionVulnerability", + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeUdp", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15185,7 +16456,99 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15204,7 +16567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15219,7 +16582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15234,7 +16597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15249,7 +16612,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15265,7 +16628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15281,7 +16644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15296,7 +16659,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15311,7 +16674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15326,7 +16689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15334,187 +16697,40 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkServiceDataFlowTemplateObject", - "Name": "New-AzMobileNetworkServiceDataFlowTemplateObject", - "ClassName": "New-AzMobileNetworkServiceDataFlowTemplateObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ServiceDataFlowTemplate", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ServiceDataFlowTemplate, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Direction": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection", - "TemplateName": "System.String", - "Port": "System.String[]", - "Protocol": "System.String[]", - "RemoteIPList": "System.String[]" }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" - }, - { - "Name": "ToJsonString", - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } ] - } - ], - "Parameters": [ - { - "Name": "Direction", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "RemoteIPList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TemplateName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityPacketCoreControlPlaneExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "Direction", + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15525,12 +16741,11 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "PacketCoreDataPlaneName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15541,11 +16756,43 @@ }, { "ParameterMetadata": { - "Name": "RemoteIPList", + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsAddress", "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -15557,11 +16804,11 @@ }, { "ParameterMetadata": { - "Name": "TemplateName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15572,12 +16819,11 @@ }, { "ParameterMetadata": { - "Name": "Port", + "Name": "NaptConfigurationEnabled", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15585,448 +16831,119 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkServiceResourceIdObject", - "Name": "New-AzMobileNetworkServiceResourceIdObject", - "ClassName": "New-AzMobileNetworkServiceResourceIdObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ServiceResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ServiceResourceId, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" + { + "ParameterMetadata": { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" - }, - { - "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": "Id", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Id", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSim", - "Name": "New-AzMobileNetworkSim", - "ClassName": "New-AzMobileNetworkSim", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISim", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISim, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StaticIPConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState]", - "AuthenticationKey": "System.String", - "DeviceType": "System.String", - "IntegratedCircuitCardIdentifier": "System.String", - "InternationalMobileSubscriberIdentity": "System.String", - "OperatorKeyCode": "System.String", - "PolicyId": "System.String", - "VendorKeyFingerprint": "System.String", - "VendorName": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "SimName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InternationalMobileSubscriberIdentity", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AuthenticationKey", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DeviceType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IntegratedCircuitCardIdentifier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "OperatorKeyCode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SimPolicyId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StaticIPConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], + "Name": "PortRangeMaxPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SimName" - ], + "Name": "PortRangeMinPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PortReuseHoldTimeTcp", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "PortReuseHoldTimeUdp", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16037,26 +16954,27 @@ }, { "ParameterMetadata": { - "Name": "InternationalMobileSubscriberIdentity", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthenticationKey", + "Name": "UserEquipmentAddressPoolPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -16067,11 +16985,12 @@ }, { "ParameterMetadata": { - "Name": "DeviceType", + "Name": "UserEquipmentStaticAddressPoolPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -16082,11 +17001,11 @@ }, { "ParameterMetadata": { - "Name": "IntegratedCircuitCardIdentifier", + "Name": "UserPlaneDataInterfaceIpv4Address", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16097,11 +17016,11 @@ }, { "ParameterMetadata": { - "Name": "OperatorKeyCode", + "Name": "UserPlaneDataInterfaceIpv4Gateway", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16112,11 +17031,11 @@ }, { "ParameterMetadata": { - "Name": "SimPolicyId", + "Name": "UserPlaneDataInterfaceIpv4Subnet", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16127,12 +17046,11 @@ }, { "ParameterMetadata": { - "Name": "StaticIPConfiguration", + "Name": "UserPlaneDataInterfaceName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16151,7 +17069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16166,7 +17084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16181,7 +17099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16196,7 +17114,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16212,7 +17130,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16228,7 +17146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16243,7 +17161,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16258,7 +17176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16273,7 +17191,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16283,226 +17219,20 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSimGroup", - "Name": "New-AzMobileNetworkSimGroup", - "ClassName": "New-AzMobileNetworkSimGroup", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimGroup, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "EncryptionKeyUrl": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "MobileNetworkId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "SimGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MobileNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "SimGroupName" + "AttachedDataNetworkName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16513,11 +17243,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16528,26 +17258,26 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "PacketCoreDataPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16558,11 +17288,11 @@ }, { "ParameterMetadata": { - "Name": "EncryptionKeyUrl", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16573,41 +17303,42 @@ }, { "ParameterMetadata": { - "Name": "IdentityType", + "Name": "DnsAddress", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdentityUserAssignedIdentity", + "Name": "Location", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MobileNetworkId", + "Name": "NaptConfigurationEnabled", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16618,11 +17349,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "NaptConfigurationPinholeLimit", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16633,15 +17364,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "PinholeTimeoutIcmp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16652,11 +17379,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PinholeTimeoutTcp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16667,11 +17394,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "PinholeTimeoutUdp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16682,12 +17409,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "PortRangeMaxPort", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16698,12 +17424,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "PortRangeMinPort", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16714,11 +17439,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PortReuseHoldTimeTcp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16729,11 +17454,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "PortReuseHoldTimeUdp", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16744,11 +17469,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16759,11 +17484,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "UserEquipmentAddressPoolPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -16771,302 +17497,60 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSimPolicy", - "Name": "New-AzMobileNetworkSimPolicy", - "ClassName": "New-AzMobileNetworkSimPolicy", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimPolicy, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "SliceConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "RegistrationTimer": "System.Nullable`1[System.Int32]", - "RfspIndex": "System.Nullable`1[System.Int32]", - "DefaultSlouseId": "System.String", - "UeAmbrDownlink": "System.String", - "UeAmbrUplink": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "SimPolicyName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultSliceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SliceConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UeAmbrDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UeAmbrUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RegistrationTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RfspIndex", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "UserEquipmentStaticAddressPoolPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SimPolicyName" - ], + "Name": "UserPlaneDataInterfaceIpv4Address", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "UserPlaneDataInterfaceIpv4Gateway", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "UserPlaneDataInterfaceIpv4Subnet", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17077,87 +17561,92 @@ }, { "ParameterMetadata": { - "Name": "DefaultSliceId", + "Name": "UserPlaneDataInterfaceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SliceConfiguration", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UeAmbrDownlink", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UeAmbrUplink", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RegistrationTimer", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -17168,11 +17657,11 @@ }, { "ParameterMetadata": { - "Name": "RfspIndex", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17183,11 +17672,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Proxy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17198,15 +17687,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17217,11 +17702,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17232,11 +17717,14 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17244,15 +17732,82 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "DnsAddress", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17263,12 +17818,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "NaptConfigurationPinholeLimit", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17279,11 +17833,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PinholeTimeoutIcmp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17294,11 +17848,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "PinholeTimeoutTcp", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17309,11 +17863,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "PinholeTimeoutUdp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17324,11 +17878,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "PortRangeMaxPort", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17336,164 +17890,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSimStaticIPPropertiesObject", - "Name": "New-AzMobileNetworkSimStaticIPPropertiesObject", - "ClassName": "New-AzMobileNetworkSimStaticIPPropertiesObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.SimStaticIPProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.SimStaticIPProperties, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkId": "System.String", - "SlouseId": "System.String", - "StaticIPIpv4Address": "System.String" }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" - }, - { - "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": "AttachedDataNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SliceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StaticIPIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "AttachedDataNetworkId", + "Name": "PortRangeMinPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17504,11 +17908,11 @@ }, { "ParameterMetadata": { - "Name": "SliceId", + "Name": "PortReuseHoldTimeTcp", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17519,11 +17923,11 @@ }, { "ParameterMetadata": { - "Name": "StaticIPIpv4Address", + "Name": "PortReuseHoldTimeUdp", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17531,451 +17935,61 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSite", - "Name": "New-AzMobileNetworkSite", - "ClassName": "New-AzMobileNetworkSite", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISite", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISite, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkFunction": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "SiteName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DataNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PlatformType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ControlPlaneAccessInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CustomLocationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AzureStackEdgeDeviceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LocalDiagnosticAccessAuthenticationType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CoreNetworkTechnology", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DnsAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NaptConfigurationEnabled", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneDataInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserEquipmentAddressPoolPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserEquipmentStaticAddressPoolPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SiteName" - ], + "Name": "UserEquipmentAddressPoolPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "UserEquipmentStaticAddressPoolPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "UserPlaneDataInterfaceIpv4Address", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17986,191 +18000,11 @@ }, { "ParameterMetadata": { - "Name": "DataNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PlatformType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CustomLocationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AzureStackEdgeDeviceId", + "Name": "UserPlaneDataInterfaceIpv4Gateway", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "LocalDiagnosticAccessAuthenticationType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CoreNetworkTechnology", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18181,11 +18015,11 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Address", + "Name": "UserPlaneDataInterfaceIpv4Subnet", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18196,11 +18030,11 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Name": "UserPlaneDataInterfaceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18211,11 +18045,15 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18226,11 +18064,11 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18241,12 +18079,11 @@ }, { "ParameterMetadata": { - "Name": "DnsAddress", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18257,11 +18094,12 @@ }, { "ParameterMetadata": { - "Name": "NaptConfigurationEnabled", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -18272,11 +18110,12 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Address", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -18287,11 +18126,11 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18302,11 +18141,11 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18317,11 +18156,11 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceName", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18332,12 +18171,11 @@ }, { "ParameterMetadata": { - "Name": "UserEquipmentAddressPoolPrefix", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18348,12 +18186,14 @@ }, { "ParameterMetadata": { - "Name": "UserEquipmentStaticAddressPoolPrefix", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18361,7 +18201,12 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -18372,7 +18217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18387,7 +18232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18402,7 +18247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18417,7 +18262,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18433,7 +18278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18449,7 +18294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18464,7 +18309,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18479,7 +18324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18494,7 +18339,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18502,148 +18347,21 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSiteResourceIdObject", - "Name": "New-AzMobileNetworkSiteResourceIdObject", - "ClassName": "New-AzMobileNetworkSiteResourceIdObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.SiteResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.SiteResourceId, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - { - "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": "Id", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Id", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -18654,9 +18372,9 @@ }, { "VerbName": "New", - "NounName": "AzMobileNetworkSlice", - "Name": "New-AzMobileNetworkSlice", - "ClassName": "New-AzMobileNetworkSlice", + "NounName": "AzMobileNetworkDataNetwork", + "Name": "New-AzMobileNetworkDataNetwork", + "ClassName": "New-AzMobileNetworkDataNetwork", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -18664,14 +18382,12 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISlice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISlice, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SnssaiSst": "System.Int32", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", "Description": "System.String", - "SnssaiSd": "System.String" + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -18685,25 +18401,28 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SliceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18712,43 +18431,77 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "SnssaiSst", + "Name": "MobileNetworkInputObject", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Description", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SnssaiSd", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18757,7 +18510,25 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18770,7 +18541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18779,7 +18550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18788,7 +18559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18797,7 +18568,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18807,7 +18578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18817,7 +18588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18826,7 +18597,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18835,7 +18606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18844,14 +18615,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { @@ -18859,7 +18642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18870,11 +18653,14 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18885,11 +18671,11 @@ }, { "ParameterMetadata": { - "Name": "SliceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18904,7 +18690,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18915,11 +18701,11 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18930,26 +18716,30 @@ }, { "ParameterMetadata": { - "Name": "SnssaiSst", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18960,11 +18750,11 @@ }, { "ParameterMetadata": { - "Name": "SnssaiSd", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18975,11 +18765,12 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -18990,15 +18781,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -19009,11 +18797,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19024,43 +18812,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19071,26 +18827,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19101,11 +18842,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19116,11 +18857,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19130,179 +18874,17 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzMobileNetworkSliceConfigurationObject", - "Name": "New-AzMobileNetworkSliceConfigurationObject", - "ClassName": "New-AzMobileNetworkSliceConfigurationObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.SliceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.SliceConfiguration, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DataNetworkConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[]", - "DefaultDataNetworkId": "System.String", - "SlouseId": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" - }, - { - "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": "DataNetworkConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultDataNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "SliceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "DataNetworkConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultDataNetworkId", + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19313,11 +18895,14 @@ }, { "ParameterMetadata": { - "Name": "SliceId", + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19325,200 +18910,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetwork", - "Name": "Remove-AzMobileNetwork", - "ClassName": "Remove-AzMobileNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "MobileNetworkName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "MobileNetworkName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19529,30 +18928,30 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -19567,7 +18966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19582,7 +18981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19597,7 +18996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19612,7 +19011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19628,7 +19027,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19644,7 +19043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19655,11 +19054,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19670,11 +19069,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19685,11 +19084,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19700,11 +19099,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19716,81 +19118,63 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "MobileNetworkName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "DataNetworkName" ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19801,28 +19185,26 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Description", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19833,11 +19215,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19848,11 +19230,15 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19863,11 +19249,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19878,11 +19264,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19893,81 +19279,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -19982,7 +19299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19998,7 +19315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20009,11 +19326,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20024,11 +19341,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20039,11 +19356,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20054,11 +19371,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20068,216 +19388,20 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkAttachedDataNetwork", - "Name": "Remove-AzMobileNetworkAttachedDataNetwork", - "ClassName": "Remove-AzMobileNetworkAttachedDataNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AttachedDataNetworkName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreDataPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", + "Name": "CreateViaIdentityMobileNetworkExpanded", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "AttachedDataNetworkName" + "DataNetworkName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20288,26 +19412,43 @@ }, { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "MobileNetworkInputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PacketCoreDataPlaneName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20318,26 +19459,26 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20356,7 +19497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20371,7 +19512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20386,7 +19527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20401,7 +19542,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20417,7 +19558,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20433,7 +19574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20444,11 +19585,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20459,11 +19600,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20474,11 +19615,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20489,11 +19630,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20505,7 +19649,7 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { @@ -20513,7 +19657,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -20539,6 +19683,51 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -20549,7 +19738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20564,7 +19753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20579,7 +19768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20594,7 +19783,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20610,7 +19799,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20626,7 +19815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20637,11 +19826,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20652,11 +19841,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20667,11 +19856,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20682,11 +19871,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20710,7 +19902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20725,7 +19917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20740,7 +19932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20755,7 +19947,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20771,7 +19963,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20787,7 +19979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20798,11 +19990,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20813,11 +20005,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20828,11 +20020,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20843,11 +20035,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20861,213 +20056,253 @@ ] }, { - "VerbName": "Remove", - "NounName": "AzMobileNetworkBulkSimDelete", - "Name": "Remove-AzMobileNetworkBulkSimDelete", - "ClassName": "Remove-AzMobileNetworkBulkSimDelete", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + "VerbName": "New", + "NounName": "AzMobileNetworkDataNetworkConfigurationObject", + "Name": "New-AzMobileNetworkDataNetworkConfigurationObject", + "ClassName": "New-AzMobileNetworkDataNetworkConfigurationObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, "SupportsPaging": false, - "DefaultParameterSetName": "BulkExpanded", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", - "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", - "EndTime": "System.Nullable`1[System.DateTime]", - "StartTime": "System.Nullable`1[System.DateTime]", - "PercentComplete": "System.Nullable`1[System.Double]", - "Code": "System.String", - "Id": "System.String", - "Message": "System.String", - "Name": "System.String", - "ResourceId": "System.String", - "Status": "System.String", - "Target": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SimGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.DataNetworkConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.DataNetworkConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sim", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, + "AllowedService": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId]", + "AdditionalAllowedSessionType": "System.Collections.Generic.List`1[System.String]", + "AllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", + "FiveQi": "System.Nullable`1[System.Int32]", + "MaximumNumberOfBufferedPacket": "System.Nullable`1[System.Int32]", + "DataNetworkId": "System.String", + "DefaultSessionType": "System.String", + "PreemptionCapability": "System.String", + "PreemptionVulnerability": "System.String", + "SessionAmbrDownlink": "System.String", + "SessionAmbrUplink": "System.String" + }, + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + }, + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + }, + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + }, + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + }, + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + }, + { + "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": "AllowedService", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" + }, "ValidateNotNullOrEmpty": false }, { - "Name": "Break", + "Name": "DataNetworkId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelineAppend", + "Name": "SessionAmbrDownlink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelinePrepend", + "Name": "SessionAmbrUplink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NoWait", + "Name": "AdditionalAllowedSessionType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "AllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", + "Name": "DefaultSessionType", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyCredential", + "Name": "FiveQi", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyUseDefaultCredentials", + "Name": "MaximumNumberOfBufferedPacket", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "BulkExpanded", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AllowedService", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" }, "ValidateNotNullOrEmpty": false }, @@ -21078,11 +20313,11 @@ }, { "ParameterMetadata": { - "Name": "SimGroupName", + "Name": "DataNetworkId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21093,27 +20328,11 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "SessionAmbrDownlink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Sim", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21124,257 +20343,30 @@ }, { "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", + "Name": "SessionAmbrUplink", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "BulkViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sim", + "Name": "AdditionalAllowedSessionType", "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -21382,12 +20374,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "AllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21398,12 +20389,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "DefaultSessionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21414,11 +20404,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "FiveQi", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21429,11 +20419,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "MaximumNumberOfBufferedPacket", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21444,11 +20434,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "PreemptionCapability", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21459,11 +20449,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "PreemptionVulnerability", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21474,11 +20464,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21488,235 +20481,79 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Sim", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkDataNetwork", - "Name": "Remove-AzMobileNetworkDataNetwork", - "ClassName": "Remove-AzMobileNetworkDataNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DataNetworkName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkPacketCoreControlPlane", + "Name": "New-AzMobileNetworkPacketCoreControlPlane", + "ClassName": "New-AzMobileNetworkPacketCoreControlPlane", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateViaIdentityExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "InteropSetting": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlanePropertiesFormatInteropSettings", + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "PlatformAzureStackEdgeDevices": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId]", + "Site": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId]", + "UeMtu": "System.Nullable`1[System.Int32]", + "Sku": "System.String", + "RollbackVersion": "System.String", + "ProvisioningState": "System.String", + "ProvisioningReason": "System.String", + "PlatformType": "System.String", + "OperationId": "System.String", + "LocalDiagnosticsAccessHttpsServerCertificateProvisioningState": "System.String", + "LocalDiagnosticAccessAuthenticationType": "System.String", + "InstallationState": "System.String", + "AzureStackEdgeDeviceId": "System.String", + "IdentityTenantId": "System.String", + "IdentityPrincipalId": "System.String", + "HttpsServerCertificateUrl": "System.String", + "CustomLocationId": "System.String", + "CoreNetworkTechnology": "System.String", + "ControlPlaneAccessInterfaceName": "System.String", + "ControlPlaneAccessInterfaceIpv4Subnet": "System.String", + "ControlPlaneAccessInterfaceIpv4Gateway": "System.String", + "ControlPlaneAccessInterfaceIpv4Address": "System.String", + "ConnectedClusterId": "System.String", + "AzureStackHciClusterId": "System.String", + "IdentityType": "System.String", + "Version": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21725,7 +20562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21734,7 +20571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -21755,6 +20592,215 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PlatformType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Site", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureStackEdgeDeviceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureStackHciClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConnectedClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CoreNetworkTechnology", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomLocationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpsServerCertificateUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InteropSetting", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UeMtu", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Version", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -21764,7 +20810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21773,7 +20819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21782,7 +20828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21791,7 +20837,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21801,7 +20847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21811,16 +20857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21829,7 +20866,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21838,7 +20875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21847,22 +20884,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Delete", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21873,14 +20925,11 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DataNetworkName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21891,30 +20940,30 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -21929,7 +20978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21944,7 +20993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21959,7 +21008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21974,7 +21023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21990,7 +21039,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22006,7 +21055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22017,11 +21066,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22032,11 +21081,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22047,11 +21096,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22062,11 +21111,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22078,38 +21130,69 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -22122,7 +21205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22137,7 +21220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22152,7 +21235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22167,7 +21250,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22183,7 +21266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22199,7 +21282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22210,11 +21293,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22225,11 +21308,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22240,11 +21323,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22255,11 +21338,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22271,49 +21357,48 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "PacketCoreControlPlaneName" ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22324,88 +21409,87 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "LocalDiagnosticAccessAuthenticationType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PlatformType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Site", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "AzureStackEdgeDeviceId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22416,11 +21500,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "AzureStackHciClusterId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22428,230 +21512,44 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkPacketCoreControlPlane", - "Name": "Remove-AzMobileNetworkPacketCoreControlPlane", - "ClassName": "Remove-AzMobileNetworkPacketCoreControlPlane", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "PacketCoreControlPlaneName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "PacketCoreControlPlaneName" - ], + "Name": "ConnectedClusterId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ControlPlaneAccessInterfaceIpv4Address", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22662,15 +21560,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22681,11 +21575,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ControlPlaneAccessInterfaceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22696,11 +21590,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "CoreNetworkTechnology", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22711,12 +21605,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "CustomLocationId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22727,12 +21620,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "EnableSystemAssignedIdentity", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22743,11 +21635,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "HttpsServerCertificateUrl", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22758,11 +21650,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "InteropSetting", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22773,11 +21665,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22788,11 +21680,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "UeMtu", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22803,11 +21695,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "UserAssignedIdentity", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -22815,42 +21708,20 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Version", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -22863,7 +21734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22878,7 +21749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22893,7 +21764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22908,7 +21779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22924,7 +21795,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22940,7 +21811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22951,11 +21822,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22966,11 +21837,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22981,11 +21852,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22996,11 +21867,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23012,96 +21886,123 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "InputObject", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Location", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "PlatformType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Site", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Sku", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "AzureStackEdgeDeviceId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23112,11 +22013,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AzureStackHciClusterId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23127,11 +22028,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ConnectedClusterId", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23142,11 +22043,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ControlPlaneAccessInterfaceIpv4Address", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23157,11 +22058,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23169,273 +22070,44 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkPacketCoreDataPlane", - "Name": "Remove-AzMobileNetworkPacketCoreDataPlane", - "ClassName": "Remove-AzMobileNetworkPacketCoreDataPlane", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "PacketCoreDataPlaneName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "PacketCoreDataPlaneName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ControlPlaneAccessInterfaceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "CoreNetworkTechnology", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23446,11 +22118,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "CustomLocationId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23461,27 +22133,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "EnableSystemAssignedIdentity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23492,12 +22148,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpsServerCertificateUrl", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23508,11 +22163,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "InteropSetting", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23523,11 +22178,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23538,11 +22193,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "UeMtu", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23553,11 +22208,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "UserAssignedIdentity", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -23568,11 +22224,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Version", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23580,43 +22236,6 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -23628,7 +22247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23643,7 +22262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23658,7 +22277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23673,7 +22292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23689,7 +22308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23705,7 +22324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23716,11 +22335,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23731,11 +22350,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23746,11 +22365,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23761,11 +22380,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23789,7 +22411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23804,7 +22426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23819,7 +22441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23834,7 +22456,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23850,7 +22472,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23866,7 +22488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23877,11 +22499,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23892,11 +22514,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23907,11 +22529,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23922,11 +22544,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23940,20 +22565,27 @@ ] }, { - "VerbName": "Remove", - "NounName": "AzMobileNetworkService", - "Name": "Remove-AzMobileNetworkService", - "ClassName": "Remove-AzMobileNetworkService", + "VerbName": "New", + "NounName": "AzMobileNetworkPacketCoreDataPlane", + "Name": "New-AzMobileNetworkPacketCoreDataPlane", + "ClassName": "New-AzMobileNetworkPacketCoreDataPlane", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Delete", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ProvisioningState": "System.String", + "UserPlaneAccessInterfaceIpv4Address": "System.String", + "UserPlaneAccessInterfaceIpv4Gateway": "System.String", + "UserPlaneAccessInterfaceIpv4Subnet": "System.String", + "UserPlaneAccessInterfaceName": "System.String" + } }, "ParameterSets": [ "__AllParameterSets" @@ -23962,23 +22594,23 @@ ], "Parameters": [ { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23987,7 +22619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23996,7 +22628,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24005,7 +22637,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -24026,6 +22684,78 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -24035,7 +22765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24044,7 +22774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24053,7 +22783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24062,7 +22792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24072,7 +22802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24082,16 +22812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24100,7 +22821,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24109,7 +22830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24118,22 +22839,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Delete", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24144,14 +22880,11 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], + "Name": "PacketCoreControlPlaneName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24166,7 +22899,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24181,7 +22914,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24190,6 +22923,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -24200,7 +22948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24215,7 +22963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24230,7 +22978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24245,7 +22993,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24261,7 +23009,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24277,7 +23025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24288,11 +23036,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24303,11 +23051,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24318,11 +23066,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24333,11 +23081,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24349,81 +23100,63 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "PacketCoreControlPlaneName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24434,28 +23167,30 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "JsonFilePath", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24466,11 +23201,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24481,11 +23216,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24496,11 +23231,12 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -24511,11 +23247,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -24526,11 +23263,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24538,23 +23275,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24565,11 +23293,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24580,27 +23308,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24611,12 +23323,14 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24624,59 +23338,84 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CreateViaIdentityPacketCoreControlPlaneExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "PacketCoreControlPlaneInputObject", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24687,272 +23426,56 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkSim", - "Name": "Remove-AzMobileNetworkSim", - "ClassName": "Remove-AzMobileNetworkSim", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "SimName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "GroupName", - "AliasList": [ - "SimGroupName" - ], + "Name": "UserPlaneAccessInterfaceIpv4Address", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SimName" - ], + "Name": "UserPlaneAccessInterfaceIpv4Gateway", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "UserPlaneAccessInterfaceIpv4Subnet", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "UserPlaneAccessInterfaceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24971,7 +23494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24986,7 +23509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25001,7 +23524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25016,7 +23539,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25032,7 +23555,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25048,7 +23571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25059,11 +23582,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25074,11 +23597,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25089,11 +23612,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25104,11 +23627,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25120,81 +23646,63 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "PacketCoreControlPlaneName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25205,28 +23713,26 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25237,11 +23743,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "UserPlaneAccessInterfaceIpv4Address", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25252,11 +23758,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "UserPlaneAccessInterfaceIpv4Gateway", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25267,11 +23773,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "UserPlaneAccessInterfaceIpv4Subnet", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25282,11 +23788,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "UserPlaneAccessInterfaceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25295,26 +23801,6 @@ "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -25325,7 +23811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25340,7 +23826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25355,7 +23841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25370,7 +23856,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25386,7 +23872,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25402,22 +23888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25432,7 +23903,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25447,7 +23918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25462,238 +23933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkSimGroup", - "Name": "Remove-AzMobileNetworkSimGroup", - "ClassName": "Remove-AzMobileNetworkSimGroup", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "SimGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SimGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25704,45 +23944,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25750,46 +23959,66 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25800,11 +24029,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "UserPlaneAccessInterfaceIpv4Address", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25815,11 +24044,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "UserPlaneAccessInterfaceIpv4Gateway", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25830,11 +24059,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "UserPlaneAccessInterfaceIpv4Subnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25845,11 +24074,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "UserPlaneAccessInterfaceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25857,43 +24086,6 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -25905,7 +24097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25920,7 +24112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25935,7 +24127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25950,7 +24142,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25966,7 +24158,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25982,7 +24174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25993,11 +24185,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26008,11 +24200,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26023,11 +24215,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26038,11 +24230,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26066,7 +24261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26081,7 +24276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26096,7 +24291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26111,7 +24306,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26127,7 +24322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26143,7 +24338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26154,11 +24349,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26169,11 +24364,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26184,11 +24379,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26199,11 +24394,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26217,200 +24415,261 @@ ] }, { - "VerbName": "Remove", - "NounName": "AzMobileNetworkSimPolicy", - "Name": "Remove-AzMobileNetworkSimPolicy", - "ClassName": "Remove-AzMobileNetworkSimPolicy", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + "VerbName": "New", + "NounName": "AzMobileNetworkPccRuleConfigurationObject", + "Name": "New-AzMobileNetworkPccRuleConfigurationObject", + "ClassName": "New-AzMobileNetworkPccRuleConfigurationObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, "SupportsPaging": false, - "DefaultParameterSetName": "Delete", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "SimPolicyName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.PccRuleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.PccRuleConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "ServiceDataFlowTemplate": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate]", + "RulePrecedence": "System.Int32", + "RuleQoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", + "RuleQoPolicyFiveQi": "System.Nullable`1[System.Int32]", + "GuaranteedBitRateDownlink": "System.String", + "GuaranteedBitRateUplink": "System.String", + "RuleName": "System.String", + "RuleQoPolicyMaximumBitRateDownlink": "System.String", + "RuleQoPolicyMaximumBitRateUplink": "System.String", + "RuleQoPolicyPreemptionCapability": "System.String", + "RuleQoPolicyPreemptionVulnerability": "System.String", + "TrafficControl": "System.String" + }, + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + }, + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + { + "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": "RuleName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "RulePrecedence", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "ServiceDataFlowTemplate", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Break", + "Name": "GuaranteedBitRateDownlink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelineAppend", + "Name": "GuaranteedBitRateUplink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelinePrepend", + "Name": "RuleQoPolicyAllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NoWait", + "Name": "RuleQoPolicyFiveQi", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "RuleQoPolicyMaximumBitRateDownlink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", + "Name": "RuleQoPolicyMaximumBitRateUplink", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyCredential", + "Name": "RuleQoPolicyPreemptionCapability", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyUseDefaultCredentials", + "Name": "RuleQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TrafficControl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Delete", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "RuleName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26421,14 +24680,11 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SimPolicyName" - ], + "Name": "RulePrecedence", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26439,11 +24695,12 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ServiceDataFlowTemplate", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" }, "ValidateNotNullOrEmpty": false }, @@ -26454,30 +24711,11 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "GuaranteedBitRateDownlink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26488,11 +24726,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "GuaranteedBitRateUplink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26503,11 +24741,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "RuleQoPolicyAllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26518,12 +24756,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "RuleQoPolicyFiveQi", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26534,12 +24771,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "RuleQoPolicyMaximumBitRateDownlink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26550,11 +24786,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "RuleQoPolicyMaximumBitRateUplink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26565,11 +24801,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "RuleQoPolicyPreemptionCapability", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26580,11 +24816,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "RuleQoPolicyPreemptionVulnerability", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26595,11 +24831,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "TrafficControl", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26610,11 +24846,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26624,403 +24863,60 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkService", + "Name": "New-AzMobileNetworkService", + "ClassName": "New-AzMobileNetworkService", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateViaIdentityExpanded", + "OutputTypes": [ { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PccRule": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration]", + "Precedence": "System.Int32", + "QoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", + "QoPolicyFiveQi": "System.Nullable`1[System.Int32]", + "MaximumBitRateDownlink": "System.String", + "MaximumBitRateUplink": "System.String", + "ProvisioningState": "System.String", + "QoPolicyPreemptionCapability": "System.String", + "QoPolicyPreemptionVulnerability": "System.String" } + }, + "ParameterSets": [ + "__AllParameterSets" ] - }, - { - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkSite", - "Name": "Remove-AzMobileNetworkSite", - "ClassName": "Remove-AzMobileNetworkSite", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "Name", "AliasList": [ - "SiteName" + "ServiceName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27029,7 +24925,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27038,7 +24934,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27047,7 +24943,33 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -27068,6 +24990,115 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PccRule", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServicePrecedence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MaximumBitRateDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MaximumBitRateUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyFiveQi", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyPreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -27077,7 +25108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27086,7 +25117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27095,7 +25126,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27104,7 +25135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27114,7 +25145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27124,16 +25155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27142,7 +25164,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27151,7 +25173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27160,14 +25182,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Delete", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { @@ -27175,7 +25209,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27188,12 +25222,12 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "SiteName" + "ServiceName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27208,7 +25242,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27223,7 +25257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27232,6 +25266,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -27242,7 +25291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27257,7 +25306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27272,7 +25321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27287,7 +25336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27303,7 +25352,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27319,7 +25368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27330,11 +25379,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27345,11 +25394,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27360,11 +25409,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27375,11 +25424,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27391,38 +25443,84 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "MobileNetworkName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -27435,7 +25533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27450,7 +25548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27465,7 +25563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27480,7 +25578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27496,7 +25594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27512,7 +25610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27523,11 +25621,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27538,11 +25636,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27553,11 +25651,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27568,11 +25666,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27584,65 +25685,63 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "MobileNetworkName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "ServiceName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "SubscriptionId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27653,57 +25752,57 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PccRule", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ServicePrecedence", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "MaximumBitRateDownlink", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27714,11 +25813,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "MaximumBitRateUplink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27729,11 +25828,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27741,248 +25840,59 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzMobileNetworkSlice", - "Name": "Remove-AzMobileNetworkSlice", - "ClassName": "Remove-AzMobileNetworkSlice", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SliceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "ServiceQoPolicyFiveQi", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ServiceQoPolicyPreemptionCapability", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SliceName", + "Name": "ServiceQoPolicyPreemptionVulnerability", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28001,7 +25911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28016,7 +25926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28031,7 +25941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28046,7 +25956,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28062,7 +25972,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28078,7 +25988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28089,11 +25999,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28104,11 +26014,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28119,11 +26029,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28134,11 +26044,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28150,15 +26063,33 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateViaIdentityMobileNetworkExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -28186,61 +26117,57 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PccRule", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ServicePrecedence", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "MaximumBitRateDownlink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28251,12 +26178,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "MaximumBitRateUplink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28267,11 +26193,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28282,11 +26208,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ServiceQoPolicyFiveQi", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28297,11 +26223,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ServiceQoPolicyPreemptionCapability", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28312,11 +26238,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ServiceQoPolicyPreemptionVulnerability", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28327,11 +26253,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28339,12 +26265,7 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -28355,7 +26276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28370,7 +26291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28385,7 +26306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28400,7 +26321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28416,7 +26337,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28432,7 +26353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28443,11 +26364,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28458,11 +26379,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28473,11 +26394,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28488,11 +26409,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28502,252 +26426,49 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Trace", - "NounName": "AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage", - "Name": "Trace-AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage", - "ClassName": "Trace-AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CollectExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", - "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", - "EndTime": "System.Nullable`1[System.DateTime]", - "StartTime": "System.Nullable`1[System.DateTime]", - "PercentComplete": "System.Nullable`1[System.Double]", - "Code": "System.String", - "Id": "System.String", - "Message": "System.String", - "Name": "System.String", - "ResourceId": "System.String", - "Status": "System.String", - "Target": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageAccountBlobUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "CollectExpanded", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StorageAccountBlobUrl", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28758,45 +26479,42 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "PccRule", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ServicePrecedence", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "MaximumBitRateDownlink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28807,12 +26525,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "MaximumBitRateUplink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28823,12 +26540,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28839,11 +26555,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "ServiceQoPolicyFiveQi", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28854,11 +26570,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ServiceQoPolicyPreemptionCapability", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28869,11 +26585,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ServiceQoPolicyPreemptionVulnerability", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28884,11 +26600,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28896,58 +26612,6 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "CollectViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageAccountBlobUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -28959,7 +26623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28974,7 +26638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28989,7 +26653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29004,7 +26668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29020,7 +26684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29036,7 +26700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29051,7 +26715,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29066,7 +26730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29081,7 +26745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29089,27 +26753,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "StorageAccountBlobUrl", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -29120,7 +26787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29135,7 +26802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29150,7 +26817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29165,7 +26832,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29181,7 +26848,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29197,7 +26864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29212,7 +26879,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29227,7 +26894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29242,7 +26909,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29256,26 +26941,114 @@ ] }, { - "VerbName": "Update", - "NounName": "AzMobileNetwork", - "Name": "Update-AzMobileNetwork", - "ClassName": "Update-AzMobileNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + "VerbName": "New", + "NounName": "AzMobileNetworkServiceDataFlowTemplateObject", + "Name": "New-AzMobileNetworkServiceDataFlowTemplateObject", + "ClassName": "New-AzMobileNetworkServiceDataFlowTemplateObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IMobileNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IMobileNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ServiceDataFlowTemplate", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ServiceDataFlowTemplate, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "PublicLandMobileNetworkIdentifierMcc": "System.String", - "PublicLandMobileNetworkIdentifierMnc": "System.String", - "ServiceKey": "System.String" - } + "Port": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.Collections.Generic.List`1[System.String]", + "RemoteIPList": "System.Collections.Generic.List`1[System.String]", + "Direction": "System.String", + "TemplateName": "System.String" + }, + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" + }, + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + }, + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" + }, + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" + }, + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" + }, + { + "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" @@ -29284,148 +27057,77 @@ ], "Parameters": [ { - "Name": "MobileNetworkName", + "Name": "Direction", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubscriptionId", + "Name": "RemoteIPList", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "TemplateName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "Port", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "UpdateExpanded", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Direction", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29436,11 +27138,12 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -29451,122 +27154,43 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "RemoteIPList", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "TemplateName", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Port", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -29577,11 +27201,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29591,291 +27218,172 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkServiceResourceIdObject", + "Name": "New-AzMobileNetworkServiceResourceIdObject", + "ClassName": "New-AzMobileNetworkServiceResourceIdObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ServiceResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ServiceResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + }, + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" }, - "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" }, - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToJsonString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "Id", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Tag", + "Name": "Id", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29889,38 +27397,33 @@ ] }, { - "VerbName": "Update", - "NounName": "AzMobileNetworkAttachedDataNetwork", - "Name": "Update-AzMobileNetworkAttachedDataNetwork", - "ClassName": "Update-AzMobileNetworkAttachedDataNetwork", + "VerbName": "New", + "NounName": "AzMobileNetworkSim", + "Name": "New-AzMobileNetworkSim", + "ClassName": "New-AzMobileNetworkSim", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAttachedDataNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAttachedDataNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NaptConfigurationEnabled": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "PortReuseHoldTimeTcp": "System.Nullable`1[System.Int32]", - "NaptConfigurationPinholeLimit": "System.Nullable`1[System.Int32]", - "PinholeTimeoutIcmp": "System.Nullable`1[System.Int32]", - "PinholeTimeoutTcp": "System.Nullable`1[System.Int32]", - "PinholeTimeoutUdp": "System.Nullable`1[System.Int32]", - "PortRangeMaxPort": "System.Nullable`1[System.Int32]", - "PortRangeMinPort": "System.Nullable`1[System.Int32]", - "PortReuseHoldTimeUdp": "System.Nullable`1[System.Int32]", - "UserPlaneDataInterfaceIpv4Gateway": "System.String", - "UserPlaneDataInterfaceIpv4Address": "System.String", - "UserPlaneDataInterfaceName": "System.String", - "UserPlaneDataInterfaceIpv4Subnet": "System.String", - "UserEquipmentAddressPoolPrefix": "System.String[]", - "UserEquipmentStaticAddressPoolPrefix": "System.String[]", - "DnsAddress": "System.String[]" + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "StaticIPConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]", + "AuthenticationKey": "System.String", + "DeviceType": "System.String", + "IntegratedCircuitCardIdentifier": "System.String", + "InternationalMobileSubscriberIdentity": "System.String", + "OperatorKeyCode": "System.String", + "PolicyId": "System.String", + "ProvisioningState": "System.String", + "State": "System.String", + "VendorKeyFingerprint": "System.String", + "VendorName": "System.String" } }, "ParameterSets": [ @@ -29930,302 +27433,295 @@ ], "Parameters": [ { - "Name": "AttachedDataNetworkName", + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PacketCoreControlPlaneName", + "Name": "Name", + "AliasList": [ + "SimName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PacketCoreDataPlaneName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubscriptionId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DnsAddress", + "Name": "SimGroupInputObject", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "NaptConfigurationEnabled", + "Name": "InternationalMobileSubscriberIdentity", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NaptConfigurationPinholeLimit", + "Name": "AuthenticationKey", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PinholeTimeoutIcmp", + "Name": "DeviceType", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PinholeTimeoutTcp", + "Name": "IntegratedCircuitCardIdentifier", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PinholeTimeoutUdp", + "Name": "OperatorKeyCode", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PortRangeMaxPort", + "Name": "SimPolicyId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PortRangeMinPort", + "Name": "StaticIPConfiguration", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PortReuseHoldTimeTcp", + "Name": "JsonFilePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PortReuseHoldTimeUdp", + "Name": "JsonString", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserEquipmentAddressPoolPrefix", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserEquipmentStaticAddressPoolPrefix", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneDataInterfaceIpv4Address", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UserPlaneDataInterfaceName", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "Proxy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, { - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "AttachedDataNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30236,11 +27732,14 @@ }, { "ParameterMetadata": { - "Name": "PacketCoreDataPlaneName", + "Name": "Name", + "AliasList": [ + "SimName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30255,7 +27754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30270,7 +27769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30281,27 +27780,30 @@ }, { "ParameterMetadata": { - "Name": "DnsAddress", + "Name": "JsonString", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NaptConfigurationEnabled", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30312,11 +27814,11 @@ }, { "ParameterMetadata": { - "Name": "NaptConfigurationPinholeLimit", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30327,11 +27829,11 @@ }, { "ParameterMetadata": { - "Name": "PinholeTimeoutIcmp", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30342,11 +27844,12 @@ }, { "ParameterMetadata": { - "Name": "PinholeTimeoutTcp", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -30357,11 +27860,12 @@ }, { "ParameterMetadata": { - "Name": "PinholeTimeoutUdp", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -30372,11 +27876,11 @@ }, { "ParameterMetadata": { - "Name": "PortRangeMaxPort", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30387,11 +27891,11 @@ }, { "ParameterMetadata": { - "Name": "PortRangeMinPort", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30402,11 +27906,11 @@ }, { "ParameterMetadata": { - "Name": "PortReuseHoldTimeTcp", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30417,11 +27921,11 @@ }, { "ParameterMetadata": { - "Name": "PortReuseHoldTimeUdp", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30432,12 +27936,14 @@ }, { "ParameterMetadata": { - "Name": "UserEquipmentAddressPoolPrefix", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30445,60 +27951,70 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ { "ParameterMetadata": { - "Name": "UserEquipmentStaticAddressPoolPrefix", + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Address", + "Name": "Name", + "AliasList": [ + "SimName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30509,26 +28025,30 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneDataInterfaceName", + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30539,15 +28059,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30562,7 +28078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30577,7 +28093,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30593,7 +28109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30603,13 +28119,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30624,7 +28155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30639,7 +28170,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30649,208 +28198,20 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkBulkSimUpload", - "Name": "Update-AzMobileNetworkBulkSimUpload", - "ClassName": "Update-AzMobileNetworkBulkSimUpload", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "BulkViaIdentityExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", - "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", - "EndTime": "System.Nullable`1[System.DateTime]", - "StartTime": "System.Nullable`1[System.DateTime]", - "PercentComplete": "System.Nullable`1[System.Double]", - "Code": "System.String", - "Id": "System.String", - "Message": "System.String", - "Name": "System.String", - "ResourceId": "System.String", - "Status": "System.String", - "Target": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SimGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sim", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "BulkExpanded", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30861,11 +28222,29 @@ }, { "ParameterMetadata": { - "Name": "SimGroupName", + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30880,7 +28259,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30891,12 +28270,11 @@ }, { "ParameterMetadata": { - "Name": "Sim", + "Name": "InternationalMobileSubscriberIdentity", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30905,6 +28283,97 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -30915,7 +28384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30930,7 +28399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30945,7 +28414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30960,7 +28429,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30976,7 +28445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30992,7 +28461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31007,7 +28476,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31022,7 +28491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31037,7 +28506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31045,19 +28514,55 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "BulkViaIdentityExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentitySimGroupExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -31085,12 +28590,11 @@ }, { "ParameterMetadata": { - "Name": "Sim", + "Name": "InternationalMobileSubscriberIdentity", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31099,6 +28603,97 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -31109,7 +28704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31124,7 +28719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31139,7 +28734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31154,7 +28749,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31170,7 +28765,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31186,7 +28781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31201,7 +28796,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31216,7 +28811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31231,7 +28826,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31243,16 +28856,47 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "Sim", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternationalMobileSubscriberIdentity", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31261,6 +28905,261 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -31271,7 +29170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31286,7 +29185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31301,7 +29200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31316,7 +29215,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31332,7 +29231,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31348,7 +29247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31363,7 +29262,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31378,7 +29277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31393,7 +29292,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31407,34 +29324,28 @@ ] }, { - "VerbName": "Update", - "NounName": "AzMobileNetworkBulkSimUploadEncrypted", - "Name": "Update-AzMobileNetworkBulkSimUploadEncrypted", - "ClassName": "Update-AzMobileNetworkBulkSimUploadEncrypted", + "VerbName": "New", + "NounName": "AzMobileNetworkSimGroup", + "Name": "New-AzMobileNetworkSimGroup", + "ClassName": "New-AzMobileNetworkSimGroup", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "BulkViaIdentityExpanded", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", - "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", - "EndTime": "System.Nullable`1[System.DateTime]", - "StartTime": "System.Nullable`1[System.DateTime]", - "PercentComplete": "System.Nullable`1[System.Double]", - "Code": "System.String", - "Id": "System.String", - "Message": "System.String", - "Name": "System.String", - "ResourceId": "System.String", - "Status": "System.String", - "Target": "System.String" + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "EncryptionKeyUrl": "System.String", + "IdentityPrincipalId": "System.String", + "IdentityTenantId": "System.String", + "IdentityType": "System.String", + "MobileNetworkId": "System.String", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -31444,20 +29355,23 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SimGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31466,7 +29380,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31475,7 +29389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AttachedDataNetworkName": "System.String", "DataNetworkName": "System.String", @@ -31497,57 +29411,75 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AzureKeyIdentifier", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EncryptedTransportKey", + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EncryptionKeyUrl", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SignedTransportKey", + "Name": "MobileNetworkId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Sim", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VendorKeyFingerprint", + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Version", + "Name": "JsonString", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31560,7 +29492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31569,7 +29501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31578,7 +29510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31587,7 +29519,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31597,7 +29529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31607,7 +29539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31616,7 +29548,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31625,7 +29557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31634,22 +29566,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "BulkExpanded", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31660,11 +29607,11 @@ }, { "ParameterMetadata": { - "Name": "SimGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31679,7 +29626,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31690,11 +29637,11 @@ }, { "ParameterMetadata": { - "Name": "AzureKeyIdentifier", + "Name": "JsonString", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31705,26 +29652,178 @@ }, { "ParameterMetadata": { - "Name": "EncryptedTransportKey", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SignedTransportKey", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31735,12 +29834,11 @@ }, { "ParameterMetadata": { - "Name": "Sim", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31751,26 +29849,26 @@ }, { "ParameterMetadata": { - "Name": "VendorKeyFingerprint", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Version", + "Name": "JsonFilePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31789,7 +29887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31804,7 +29902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31819,7 +29917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31834,7 +29932,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31850,7 +29948,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31866,7 +29964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31881,7 +29979,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31896,7 +29994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31911,7 +30009,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31923,47 +30039,33 @@ ] }, { - "Name": "BulkViaIdentityExpanded", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AzureKeyIdentifier", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31974,26 +30076,26 @@ }, { "ParameterMetadata": { - "Name": "EncryptedTransportKey", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SignedTransportKey", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32004,46 +30106,76 @@ }, { "ParameterMetadata": { - "Name": "Sim", + "Name": "EnableSystemAssignedIdentity", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VendorKeyFingerprint", + "Name": "EncryptionKeyUrl", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Version", + "Name": "MobileNetworkId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -32058,7 +30190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32073,7 +30205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32088,7 +30220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32103,7 +30235,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32119,7 +30251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32135,7 +30267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32150,7 +30282,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32165,7 +30297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32180,7 +30312,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32192,30 +30342,47 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureKeyIdentifier", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EncryptedTransportKey", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32226,61 +30393,76 @@ }, { "ParameterMetadata": { - "Name": "SignedTransportKey", + "Name": "EnableSystemAssignedIdentity", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sim", + "Name": "EncryptionKeyUrl", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VendorKeyFingerprint", + "Name": "MobileNetworkId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Version", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -32295,7 +30477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32310,7 +30492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32325,7 +30507,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32340,7 +30522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32356,7 +30538,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32372,7 +30554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32387,7 +30569,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32402,7 +30584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32417,7 +30599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32425,217 +30607,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkDataNetwork", - "Name": "Update-AzMobileNetworkDataNetwork", - "ClassName": "Update-AzMobileNetworkDataNetwork", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetwork, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "Description": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "DataNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DataNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32643,14 +30625,23 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Description", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32661,11 +30652,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32676,15 +30667,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32695,11 +30682,12 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -32710,11 +30698,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "HttpPipelinePrepend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32726,12 +30714,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32746,7 +30733,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32761,7 +30748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32776,7 +30763,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32790,49 +30795,29 @@ ] }, { - "VerbName": "Update", - "NounName": "AzMobileNetworkPacketCoreControlPlane", - "Name": "Update-AzMobileNetworkPacketCoreControlPlane", - "ClassName": "Update-AzMobileNetworkPacketCoreControlPlane", + "VerbName": "New", + "NounName": "AzMobileNetworkSimPolicy", + "Name": "New-AzMobileNetworkSimPolicy", + "ClassName": "New-AzMobileNetworkSimPolicy", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", + "DefaultParameterSetName": "CreateViaIdentityExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlane", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlane, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PropertiesPlatformAzureStackEdgeDevices": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId[]", - "InteropSetting": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlanePropertiesFormatInteropSettings", - "Site": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "LocalDiagnosticAccessAuthenticationType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "Sku": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "PlatformType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "LocalDiagnosticsAccessHttpsServerCertificateProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState]", - "CoreNetworkTechnology": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType]", - "InstallationState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "UeMtu": "System.Nullable`1[System.Int32]", - "RollbackVersion": "System.String", - "ProvisioningReason": "System.String", - "OperationId": "System.String", - "AzureStackEdgeDeviceId": "System.String", - "IdentityPrincipalId": "System.String", - "HttpsServerCertificateUrl": "System.String", - "CustomLocationId": "System.String", - "ControlPlaneAccessInterfaceName": "System.String", - "ControlPlaneAccessInterfaceIpv4Subnet": "System.String", - "ControlPlaneAccessInterfaceIpv4Gateway": "System.String", - "ControlPlaneAccessInterfaceIpv4Address": "System.String", - "ConnectedClusterId": "System.String", - "AzureStackHciClusterId": "System.String", - "IdentityTenantId": "System.String", - "Version": "System.String" + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "SliceConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration]", + "RegistrationTimer": "System.Nullable`1[System.Int32]", + "RfspIndex": "System.Nullable`1[System.Int32]", + "DefaultSlouseId": "System.String", + "ProvisioningState": "System.String", + "UeAmbrDownlink": "System.String", + "UeAmbrUplink": "System.String" } }, "ParameterSets": [ @@ -32842,210 +30827,184 @@ ], "Parameters": [ { - "Name": "PacketCoreControlPlaneName", + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubscriptionId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LocalDiagnosticAccessAuthenticationType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PlatformType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Site", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AzureStackEdgeDeviceId", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AzureStackHciClusterId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "ConnectedClusterId", + "Name": "MobileNetworkInputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Name": "DefaultSliceId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Name": "SliceConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ControlPlaneAccessInterfaceName", + "Name": "UeAmbrDownlink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CoreNetworkTechnology", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "CustomLocationId", + "Name": "UeAmbrUplink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpsServerCertificateUrl", + "Name": "RegistrationTimer", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IdentityUserAssignedIdentity", + "Name": "RfspIndex", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InteropSetting", + "Name": "Tag", "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UeMtu", + "Name": "JsonFilePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Version", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33058,7 +31017,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33067,7 +31035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33076,7 +31044,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33086,17 +31054,26 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33105,7 +31082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33114,22 +31091,34 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33140,11 +31129,14 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33155,26 +31147,26 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalDiagnosticAccessAuthenticationType", + "Name": "SubscriptionId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33185,27 +31177,30 @@ }, { "ParameterMetadata": { - "Name": "PlatformType", + "Name": "JsonString", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Site", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33216,11 +31211,11 @@ }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33231,11 +31226,11 @@ }, { "ParameterMetadata": { - "Name": "AzureStackEdgeDeviceId", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33246,11 +31241,12 @@ }, { "ParameterMetadata": { - "Name": "AzureStackHciClusterId", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -33261,11 +31257,12 @@ }, { "ParameterMetadata": { - "Name": "ConnectedClusterId", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -33276,11 +31273,11 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33291,11 +31288,11 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33306,11 +31303,11 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33321,11 +31318,11 @@ }, { "ParameterMetadata": { - "Name": "ControlPlaneAccessInterfaceName", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33336,11 +31333,14 @@ }, { "ParameterMetadata": { - "Name": "CoreNetworkTechnology", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33348,74 +31348,67 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, - { + } + ] + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ + { "ParameterMetadata": { - "Name": "CustomLocationId", + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpsServerCertificateUrl", + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdentityUserAssignedIdentity", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InteropSetting", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33426,26 +31419,30 @@ }, { "ParameterMetadata": { - "Name": "UeMtu", + "Name": "JsonFilePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Version", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33456,11 +31453,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33471,15 +31468,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33490,11 +31483,12 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -33505,11 +31499,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "HttpPipelinePrepend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33521,12 +31515,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33541,7 +31534,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33556,7 +31549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33571,7 +31564,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33581,200 +31592,17 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkPacketCoreDataPlane", - "Name": "Update-AzMobileNetworkPacketCoreDataPlane", - "ClassName": "Update-AzMobileNetworkPacketCoreDataPlane", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreDataPlane", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreDataPlane, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "UserPlaneAccessInterfaceIpv4Address": "System.String", - "UserPlaneAccessInterfaceIpv4Gateway": "System.String", - "UserPlaneAccessInterfaceIpv4Subnet": "System.String", - "UserPlaneAccessInterfaceName": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "PacketCoreControlPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCoreDataPlaneName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceIpv4Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceIpv4Gateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceIpv4Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserPlaneAccessInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCoreControlPlaneName", + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33785,11 +31613,14 @@ }, { "ParameterMetadata": { - "Name": "PacketCoreDataPlaneName", + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33804,7 +31635,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33819,7 +31650,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33830,56 +31661,102 @@ }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Address", + "Name": "DefaultSliceId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Name": "SliceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrDownlink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserPlaneAccessInterfaceName", + "Name": "UeAmbrUplink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RegistrationTimer", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RfspIndex", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33894,7 +31771,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33913,7 +31790,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33928,7 +31820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33943,7 +31835,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33959,7 +31851,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33969,13 +31861,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33990,7 +31897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34005,7 +31912,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34015,241 +31940,20 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkService", - "Name": "Update-AzMobileNetworkService", - "ClassName": "Update-AzMobileNetworkService", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IService, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PccRule": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "Precedence": "System.Int32", - "QoPolicyPreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "QoPolicyPreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "QoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", - "QoPolicyFiveQi": "System.Nullable`1[System.Int32]", - "MaximumBitRateDownlink": "System.String", - "MaximumBitRateUplink": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServicePrecedence", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PccRule", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaximumBitRateDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaximumBitRateUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyFiveQi", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyPreemptionCapability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceQoPolicyPreemptionVulnerability", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityMobileNetworkExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34260,26 +31964,43 @@ }, { "ParameterMetadata": { - "Name": "ServiceName", + "Name": "MobileNetworkInputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultSliceId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34290,26 +32011,11 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServicePrecedence", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34320,57 +32026,57 @@ }, { "ParameterMetadata": { - "Name": "PccRule", + "Name": "SliceConfiguration", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaximumBitRateDownlink", + "Name": "UeAmbrDownlink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaximumBitRateUplink", + "Name": "UeAmbrUplink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Name": "RegistrationTimer", "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34381,11 +32087,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyFiveQi", + "Name": "RfspIndex", "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34396,11 +32102,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyPreemptionCapability", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34411,11 +32117,15 @@ }, { "ParameterMetadata": { - "Name": "ServiceQoPolicyPreemptionVulnerability", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34426,11 +32136,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34441,15 +32151,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34460,11 +32166,12 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -34475,11 +32182,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "HttpPipelinePrepend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34491,12 +32198,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34511,7 +32217,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34526,7 +32232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34541,7 +32247,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34551,193 +32275,49 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkSimGroup", - "Name": "Update-AzMobileNetworkSimGroup", - "ClassName": "Update-AzMobileNetworkSimGroup", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimGroup, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "EncryptionKeyUrl": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "MobileNetworkId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SimGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MobileNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "SimGroupName", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultSliceId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34748,11 +32328,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34763,56 +32343,57 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "SliceConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EncryptionKeyUrl", + "Name": "UeAmbrDownlink", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdentityType", + "Name": "UeAmbrUplink", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdentityUserAssignedIdentity", + "Name": "RegistrationTimer", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34823,11 +32404,11 @@ }, { "ParameterMetadata": { - "Name": "MobileNetworkId", + "Name": "RfspIndex", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34842,7 +32423,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34861,7 +32442,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34876,7 +32472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34891,7 +32487,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34907,7 +32503,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34917,13 +32513,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34938,7 +32549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34953,7 +32564,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34963,267 +32592,36 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkSimPolicy", - "Name": "Update-AzMobileNetworkSimPolicy", - "ClassName": "Update-AzMobileNetworkSimPolicy", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimPolicy, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "SliceConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "RegistrationTimer": "System.Nullable`1[System.Int32]", - "RfspIndex": "System.Nullable`1[System.Int32]", - "DefaultSlouseId": "System.String", - "UeAmbrDownlink": "System.String", - "UeAmbrUplink": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SimPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultSliceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SliceConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UeAmbrDownlink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UeAmbrUplink", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "RegistrationTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RfspIndex", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SimPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35234,11 +32632,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultSliceId", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35249,12 +32647,12 @@ }, { "ParameterMetadata": { - "Name": "SliceConfiguration", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -35265,11 +32663,12 @@ }, { "ParameterMetadata": { - "Name": "UeAmbrDownlink", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -35280,11 +32679,11 @@ }, { "ParameterMetadata": { - "Name": "UeAmbrUplink", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35295,11 +32694,11 @@ }, { "ParameterMetadata": { - "Name": "RegistrationTimer", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -35310,11 +32709,11 @@ }, { "ParameterMetadata": { - "Name": "RfspIndex", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35325,11 +32724,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35340,15 +32739,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35356,46 +32754,176 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkSimStaticIPPropertiesObject", + "Name": "New-AzMobileNetworkSimStaticIPPropertiesObject", + "ClassName": "New-AzMobileNetworkSimStaticIPPropertiesObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.SimStaticIPProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.SimStaticIPProperties, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkId": "System.String", + "SlouseId": "System.String", + "StaticIPIpv4Address": "System.String" }, - { - "ParameterMetadata": { - "Name": "Break", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + { + "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": "AttachedDataNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StaticIPIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "AttachedDataNetworkId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35406,11 +32934,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "SliceId", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35421,11 +32949,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "StaticIPIpv4Address", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35436,11 +32964,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35454,23 +32985,23 @@ ] }, { - "VerbName": "Update", + "VerbName": "New", "NounName": "AzMobileNetworkSite", - "Name": "Update-AzMobileNetworkSite", - "ClassName": "Update-AzMobileNetworkSite", + "Name": "New-AzMobileNetworkSite", + "ClassName": "New-AzMobileNetworkSite", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISite", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISite, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkFunction": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]" + "NetworkFunction": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource]", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -35484,25 +33015,28 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "SiteName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SiteName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35511,33 +33045,25 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "DataNetworkName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35546,136 +33072,385 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "PlatformType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Break", + "Name": "ControlPlaneAccessInterfaceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelineAppend", + "Name": "ControlPlaneAccessInterfaceIpv4Address", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelinePrepend", + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyCredential", + "Name": "CustomLocationId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyUseDefaultCredentials", + "Name": "AzureStackEdgeDeviceId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "MobileNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SiteName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CoreNetworkTechnology", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataNetworkName", + "Type": { + "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35684,13 +33459,28 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35701,15 +33491,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "PlatformType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35720,11 +33506,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ControlPlaneAccessInterfaceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35735,12 +33521,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "ControlPlaneAccessInterfaceIpv4Address", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35751,12 +33536,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35767,11 +33551,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35782,11 +33566,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "CustomLocationId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35797,11 +33581,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "AzureStackEdgeDeviceId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35809,51 +33593,29 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "LocalDiagnosticAccessAuthenticationType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AttachedDataNetworkName": "System.String", - "DataNetworkName": "System.String", - "Id": "System.String", - "MobileNetworkName": "System.String", - "PacketCoreControlPlaneName": "System.String", - "PacketCoreDataPlaneName": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SimGroupName": "System.String", - "SimName": "System.String", - "SimPolicyName": "System.String", - "SiteName": "System.String", - "SliceName": "System.String", - "SubscriptionId": "System.String", - "VersionName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "CoreNetworkTechnology", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35864,15 +33626,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "Sku", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35883,11 +33641,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "UserPlaneAccessInterfaceIpv4Address", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35898,12 +33656,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "UserPlaneAccessInterfaceIpv4Gateway", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35914,12 +33671,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "UserPlaneAccessInterfaceIpv4Subnet", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35930,11 +33686,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "UserPlaneAccessInterfaceName", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35945,11 +33701,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "DnsAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -35960,11 +33717,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "NaptConfigurationEnabled", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35972,19 +33729,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "UserPlaneDataInterfaceIpv4Address", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35995,15 +33747,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "UserPlaneDataInterfaceIpv4Gateway", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36014,11 +33762,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "UserPlaneDataInterfaceIpv4Subnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36029,12 +33777,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "UserPlaneDataInterfaceName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36045,12 +33792,12 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "UserEquipmentAddressPoolPrefix", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -36061,11 +33808,12 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "UserEquipmentStaticAddressPoolPrefix", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -36076,11 +33824,15 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36091,11 +33843,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36103,54 +33855,345 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzMobileNetworkSlice", - "Name": "Update-AzMobileNetworkSlice", - "ClassName": "Update-AzMobileNetworkSlice", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISlice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISlice, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SnssaiSst": "System.Int32", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "Description": "System.String", - "SnssaiSd": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ + }, + { + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkSiteResourceIdObject", + "Name": "New-AzMobileNetworkSiteResourceIdObject", + "ClassName": "New-AzMobileNetworkSiteResourceIdObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "MobileNetworkName", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.SiteResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.SiteResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + }, + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + }, + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + { + "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": "Id", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SliceName", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Id", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkSlice", + "Name": "New-AzMobileNetworkSlice", + "ClassName": "New-AzMobileNetworkSlice", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SnssaiSst": "System.Int32", + "Description": "System.String", + "ProvisioningState": "System.String", + "SnssaiSd": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36159,7 +34202,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36168,7 +34220,68 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36177,7 +34290,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36186,7 +34299,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36195,7 +34308,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36204,7 +34317,25 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36217,7 +34348,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36226,7 +34366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36235,7 +34375,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36245,17 +34385,26 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -36264,7 +34413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36273,14 +34422,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { @@ -36288,7 +34449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36299,11 +34460,11 @@ }, { "ParameterMetadata": { - "Name": "SliceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36314,11 +34475,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "SliceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36333,7 +34494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -36344,41 +34505,30 @@ }, { "ParameterMetadata": { - "Name": "SnssaiSst", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Description", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SnssaiSd", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36389,11 +34539,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36404,15 +34554,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36423,11 +34569,12 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -36438,11 +34585,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "HttpPipelinePrepend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36454,12 +34601,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36474,7 +34620,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -36489,7 +34635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36504,7 +34650,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36514,1322 +34678,35023 @@ "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" + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentityMobileNetworkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzMobileNetworkSliceConfigurationObject", + "Name": "New-AzMobileNetworkSliceConfigurationObject", + "ClassName": "New-AzMobileNetworkSliceConfigurationObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.SliceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.SliceConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DataNetworkConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration]", + "DefaultDataNetworkId": "System.String", + "SlouseId": "System.String" + }, + "Methods": [ + { + "Name": "FromJson", + "Parameters": [ + { + "Name": "node", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + { + "Name": "ToJson", + "Parameters": [ + { + "Name": "container", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonObject" + }, + { + "Name": "serializationMode", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SerializationMode" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" + }, + { + "Name": "DeserializeFromDictionary", + "Parameters": [ + { + "Name": "content", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + { + "Name": "DeserializeFromPSObject", + "Parameters": [ + { + "Name": "content", + "Type": "System.Management.Automation.PSObject" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + { + "Name": "FromJsonString", + "Parameters": [ + { + "Name": "jsonText", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + { + "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": "DataNetworkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultDataNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DataNetworkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultDataNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetwork", + "Name": "Remove-AzMobileNetwork", + "ClassName": "Remove-AzMobileNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "MobileNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "MobileNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkAttachedDataNetwork", + "Name": "Remove-AzMobileNetworkAttachedDataNetwork", + "ClassName": "Remove-AzMobileNetworkAttachedDataNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DeleteViaIdentityPacketCoreDataPlane", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentityPacketCoreControlPlane", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkBulkSimDelete", + "Name": "Remove-AzMobileNetworkBulkSimDelete", + "ClassName": "Remove-AzMobileNetworkBulkSimDelete", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "BulkExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", + "EndTime": "System.Nullable`1[System.DateTime]", + "StartTime": "System.Nullable`1[System.DateTime]", + "PercentComplete": "System.Nullable`1[System.Double]", + "Code": "System.String", + "Id": "System.String", + "Message": "System.String", + "Name": "System.String", + "ResourceId": "System.String", + "Status": "System.String", + "Target": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sim", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "BulkViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sim", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sim", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkDataNetwork", + "Name": "Remove-AzMobileNetworkDataNetwork", + "ClassName": "Remove-AzMobileNetworkDataNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkPacketCoreControlPlane", + "Name": "Remove-AzMobileNetworkPacketCoreControlPlane", + "ClassName": "Remove-AzMobileNetworkPacketCoreControlPlane", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkPacketCoreDataPlane", + "Name": "Remove-AzMobileNetworkPacketCoreDataPlane", + "ClassName": "Remove-AzMobileNetworkPacketCoreDataPlane", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DeleteViaIdentityPacketCoreControlPlane", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkService", + "Name": "Remove-AzMobileNetworkService", + "ClassName": "Remove-AzMobileNetworkService", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkSim", + "Name": "Remove-AzMobileNetworkSim", + "ClassName": "Remove-AzMobileNetworkSim", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentitySimGroup", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkSimGroup", + "Name": "Remove-AzMobileNetworkSimGroup", + "ClassName": "Remove-AzMobileNetworkSimGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkSimPolicy", + "Name": "Remove-AzMobileNetworkSimPolicy", + "ClassName": "Remove-AzMobileNetworkSimPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkSite", + "Name": "Remove-AzMobileNetworkSite", + "ClassName": "Remove-AzMobileNetworkSite", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzMobileNetworkSlice", + "Name": "Remove-AzMobileNetworkSlice", + "ClassName": "Remove-AzMobileNetworkSlice", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentityMobileNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Trace", + "NounName": "AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage", + "Name": "Trace-AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage", + "ClassName": "Trace-AzMobileNetworkCollectPacketCoreControlPlaneDiagnosticPackage", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CollectExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", + "EndTime": "System.Nullable`1[System.DateTime]", + "StartTime": "System.Nullable`1[System.DateTime]", + "PercentComplete": "System.Nullable`1[System.Double]", + "Code": "System.String", + "Id": "System.String", + "Message": "System.String", + "Name": "System.String", + "ResourceId": "System.String", + "Status": "System.String", + "Target": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccountBlobUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "CollectViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CollectViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CollectExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountBlobUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CollectViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountBlobUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "System.Single": { - "Name": "System.Single" + { + "VerbName": "Update", + "NounName": "AzMobileNetwork", + "Name": "Update-AzMobileNetwork", + "ClassName": "Update-AzMobileNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ProvisioningState": "System.String", + "PublicLandMobileNetworkIdentifierMcc": "System.String", + "PublicLandMobileNetworkIdentifierMnc": "System.String", + "ServiceKey": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "System.Double": { - "Name": "System.Double" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkAttachedDataNetwork", + "Name": "Update-AzMobileNetworkAttachedDataNetwork", + "ClassName": "Update-AzMobileNetworkAttachedDataNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAttachedDataNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsAddress": "System.Collections.Generic.List`1[System.String]", + "UserEquipmentStaticAddressPoolPrefix": "System.Collections.Generic.List`1[System.String]", + "UserEquipmentAddressPoolPrefix": "System.Collections.Generic.List`1[System.String]", + "PortReuseHoldTimeUdp": "System.Nullable`1[System.Int32]", + "PortRangeMinPort": "System.Nullable`1[System.Int32]", + "PortRangeMaxPort": "System.Nullable`1[System.Int32]", + "PortReuseHoldTimeTcp": "System.Nullable`1[System.Int32]", + "PinholeTimeoutTcp": "System.Nullable`1[System.Int32]", + "PinholeTimeoutIcmp": "System.Nullable`1[System.Int32]", + "NaptConfigurationPinholeLimit": "System.Nullable`1[System.Int32]", + "PinholeTimeoutUdp": "System.Nullable`1[System.Int32]", + "UserPlaneDataInterfaceIpv4Subnet": "System.String", + "ProvisioningState": "System.String", + "NaptConfigurationEnabled": "System.String", + "UserPlaneDataInterfaceIpv4Address": "System.String", + "UserPlaneDataInterfaceIpv4Gateway": "System.String", + "UserPlaneDataInterfaceName": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaIdentityPacketCoreDataPlaneExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityPacketCoreControlPlaneExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AttachedDataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreDataPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DnsAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationEnabled", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NaptConfigurationPinholeLimit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutIcmp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PinholeTimeoutUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMaxPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortRangeMinPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeTcp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PortReuseHoldTimeUdp", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserEquipmentStaticAddressPoolPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneDataInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "System.Decimal": { - "Name": "System.Decimal" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkBulkSimUpload", + "Name": "Update-AzMobileNetworkBulkSimUpload", + "ClassName": "Update-AzMobileNetworkBulkSimUpload", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "BulkViaIdentityExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", + "EndTime": "System.Nullable`1[System.DateTime]", + "StartTime": "System.Nullable`1[System.DateTime]", + "PercentComplete": "System.Nullable`1[System.Double]", + "Code": "System.String", + "Id": "System.String", + "Message": "System.String", + "Name": "System.String", + "ResourceId": "System.String", + "Status": "System.String", + "Target": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sim", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "BulkViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sim", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sim", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "System.Char": { - "Name": "System.Char" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkBulkSimUploadEncrypted", + "Name": "Update-AzMobileNetworkBulkSimUploadEncrypted", + "ClassName": "Update-AzMobileNetworkBulkSimUploadEncrypted", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "BulkViaIdentityExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAsyncOperationStatus, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Property": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", + "EndTime": "System.Nullable`1[System.DateTime]", + "StartTime": "System.Nullable`1[System.DateTime]", + "PercentComplete": "System.Nullable`1[System.Double]", + "Code": "System.String", + "Id": "System.String", + "Message": "System.String", + "Name": "System.String", + "ResourceId": "System.String", + "Status": "System.String", + "Target": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureKeyIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EncryptedTransportKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SignedTransportKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sim", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VendorKeyFingerprint", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Version", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "BulkViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureKeyIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptedTransportKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SignedTransportKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sim", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VendorKeyFingerprint", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Version", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureKeyIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptedTransportKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SignedTransportKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sim", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VendorKeyFingerprint", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Version", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkDataNetwork", + "Name": "Update-AzMobileNetworkDataNetwork", + "ClassName": "Update-AzMobileNetworkDataNetwork", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetwork, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Description": "System.String", + "ProvisioningState": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityMobileNetworkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataNetworkName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Info": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", - "Type": "System.String" - } + { + "VerbName": "Update", + "NounName": "AzMobileNetworkPacketCoreControlPlane", + "Name": "Update-AzMobileNetworkPacketCoreControlPlane", + "ClassName": "Update-AzMobileNetworkPacketCoreControlPlane", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlane, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "InteropSetting": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlanePropertiesFormatInteropSettings", + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "PlatformAzureStackEdgeDevices": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId]", + "Site": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId]", + "UeMtu": "System.Nullable`1[System.Int32]", + "Sku": "System.String", + "RollbackVersion": "System.String", + "ProvisioningState": "System.String", + "ProvisioningReason": "System.String", + "PlatformType": "System.String", + "OperationId": "System.String", + "LocalDiagnosticsAccessHttpsServerCertificateProvisioningState": "System.String", + "LocalDiagnosticAccessAuthenticationType": "System.String", + "InstallationState": "System.String", + "AzureStackEdgeDeviceId": "System.String", + "IdentityTenantId": "System.String", + "IdentityPrincipalId": "System.String", + "HttpsServerCertificateUrl": "System.String", + "CustomLocationId": "System.String", + "CoreNetworkTechnology": "System.String", + "ControlPlaneAccessInterfaceName": "System.String", + "ControlPlaneAccessInterfaceIpv4Subnet": "System.String", + "ControlPlaneAccessInterfaceIpv4Gateway": "System.String", + "ControlPlaneAccessInterfaceIpv4Address": "System.String", + "ConnectedClusterId": "System.String", + "AzureStackHciClusterId": "System.String", + "IdentityType": "System.String", + "Version": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureStackEdgeDeviceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureStackHciClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConnectedClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ControlPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CoreNetworkTechnology", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomLocationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpsServerCertificateUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InteropSetting", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PlatformType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Site", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UeMtu", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Version", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreControlPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureStackEdgeDeviceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureStackHciClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConnectedClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CoreNetworkTechnology", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomLocationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpsServerCertificateUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InteropSetting", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PlatformType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Site", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeMtu", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureStackEdgeDeviceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureStackHciClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConnectedClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CoreNetworkTechnology", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomLocationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpsServerCertificateUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InteropSetting", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PlatformType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Site", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeMtu", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureStackEdgeDeviceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureStackHciClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConnectedClusterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ControlPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CoreNetworkTechnology", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomLocationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpsServerCertificateUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InteropSetting", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LocalDiagnosticAccessAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PlatformType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Site", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeMtu", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkPacketCoreDataPlane", + "Name": "Update-AzMobileNetworkPacketCoreDataPlane", + "ClassName": "Update-AzMobileNetworkPacketCoreDataPlane", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreDataPlane, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ProvisioningState": "System.String", + "UserPlaneAccessInterfaceIpv4Address": "System.String", + "UserPlaneAccessInterfaceIpv4Gateway": "System.String", + "UserPlaneAccessInterfaceIpv4Subnet": "System.String", + "UserPlaneAccessInterfaceName": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaIdentityPacketCoreControlPlaneExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PacketCoreDataPlaneName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCoreControlPlaneName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Gateway", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceIpv4Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserPlaneAccessInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkService", + "Name": "Update-AzMobileNetworkService", + "ClassName": "Update-AzMobileNetworkService", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IService, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PccRule": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration]", + "Precedence": "System.Int32", + "QoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", + "QoPolicyFiveQi": "System.Nullable`1[System.Int32]", + "MaximumBitRateDownlink": "System.String", + "MaximumBitRateUplink": "System.String", + "ProvisioningState": "System.String", + "QoPolicyPreemptionCapability": "System.String", + "QoPolicyPreemptionVulnerability": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServicePrecedence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PccRule", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MaximumBitRateDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MaximumBitRateUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyFiveQi", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyPreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServicePrecedence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PccRule", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyFiveQi", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityMobileNetworkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServiceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServicePrecedence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PccRule", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyFiveQi", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServicePrecedence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PccRule", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyFiveQi", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ServicePrecedence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PccRule", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MaximumBitRateUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyAllocationAndRetentionPriorityLevel", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyFiveQi", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionCapability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceQoPolicyPreemptionVulnerability", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IErrorDetail[]", - "Code": "System.String", - "Message": "System.String", - "Target": "System.String" - } + { + "VerbName": "Update", + "NounName": "AzMobileNetworkSim", + "Name": "Update-AzMobileNetworkSim", + "ClassName": "Update-AzMobileNetworkSim", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISim, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "StaticIPConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]", + "AuthenticationKey": "System.String", + "DeviceType": "System.String", + "IntegratedCircuitCardIdentifier": "System.String", + "InternationalMobileSubscriberIdentity": "System.String", + "OperatorKeyCode": "System.String", + "PolicyId": "System.String", + "ProvisioningState": "System.String", + "State": "System.String", + "VendorKeyFingerprint": "System.String", + "VendorName": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GroupName", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentitySimGroupExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimGroupInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AuthenticationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntegratedCircuitCardIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorKeyCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SimPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] }, - "System.Nullable`1[System.DateTime]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.DateTime" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkSimGroup", + "Name": "Update-AzMobileNetworkSimGroup", + "ClassName": "Update-AzMobileNetworkSimGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimGroup, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "EncryptionKeyUrl": "System.String", + "IdentityPrincipalId": "System.String", + "IdentityTenantId": "System.String", + "IdentityType": "System.String", + "MobileNetworkId": "System.String", + "ProvisioningState": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EncryptionKeyUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptionKeyUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptionKeyUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptionKeyUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } ] }, - "System.DateTime": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Nullable`1[System.Double]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Double]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Double" + { + "VerbName": "Update", + "NounName": "AzMobileNetworkSimPolicy", + "Name": "Update-AzMobileNetworkSimPolicy", + "ClassName": "Update-AzMobileNetworkSimPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimPolicy, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "SliceConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration]", + "RegistrationTimer": "System.Nullable`1[System.Int32]", + "RfspIndex": "System.Nullable`1[System.Int32]", + "DefaultSlouseId": "System.String", + "ProvisioningState": "System.String", + "UeAmbrDownlink": "System.String", + "UeAmbrUplink": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultSliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RegistrationTimer", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RfspIndex", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SliceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UeAmbrDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UeAmbrUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultSliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RegistrationTimer", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RfspIndex", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityMobileNetworkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SimPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultSliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RegistrationTimer", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RfspIndex", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultSliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RegistrationTimer", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RfspIndex", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultSliceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RegistrationTimer", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RfspIndex", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SliceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrDownlink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UeAmbrUplink", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Target": "System.Object", - "Method": "System.Reflection.MethodInfo" - }, - "Methods": [ + { + "VerbName": "Update", + "NounName": "AzMobileNetworkSite", + "Name": "Update-AzMobileNetworkSite", + "ClassName": "Update-AzMobileNetworkSite", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISite, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkFunction": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource]", + "ProvisioningState": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SiteName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SiteName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SiteName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SiteName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityMobileNetworkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SiteName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, { - "Name": "Invoke", + "Name": "UpdateViaIdentityExpanded", "Parameters": [ { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.IEventListener" + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.ISendAsync" + "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + ] + }, + { + "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Update", + "NounName": "AzMobileNetworkSlice", + "Name": "Update-AzMobileNetworkSlice", + "ClassName": "Update-AzMobileNetworkSlice", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISlice, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SnssaiSst": "System.Int32", + "Description": "System.String", + "ProvisioningState": "System.String", + "SnssaiSd": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "BeginInvoke", - "Parameters": [ - { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" - }, - { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.IEventListener" - }, - { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.ISendAsync" - }, - { - "Name": "__callback", - "Type": "System.AsyncCallback" - }, - { - "Name": "object", - "Type": "System.Object" - } - ], - "ReturnType": "System.IAsyncResult" + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "EndInvoke", - "Parameters": [ - { - "Name": "result", - "Type": "System.IAsyncResult" - } + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" ], - "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetObjectData", - "Parameters": [ - { - "Name": "info", - "Type": "System.Runtime.Serialization.SerializationInfo" - }, - { - "Name": "context", - "Type": "System.Runtime.Serialization.StreamingContext" - } - ], - "ReturnType": "System.Void" + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetInvocationList", - "ReturnType": "System.Delegate[]" + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Clone", - "ReturnType": "System.Object" + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "DynamicInvoke", - "Parameters": [ - { - "Name": "args", - "Type": "System.Object[]" - } - ], - "ReturnType": "System.Object" + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false } ], - "Constructors": [ + "ParameterSets": [ { - "Name": "", + "Name": "UpdateExpanded", "Parameters": [ { - "Name": "object", - "Type": "System.Reflection.RuntimeParameterInfo" + "ParameterMetadata": { + "Name": "MobileNetworkName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "method", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "System.Object": { - "Namespace": "System", - "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "System.IAsyncResult": { - "Namespace": "System", - "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Delegate[]": { - "Namespace": "System", - "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Delegate" - }, - "System.Delegate": { - "Namespace": "System", - "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.NaptEnabled, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "UpdateViaIdentityMobileNetworkExpanded", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SliceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MobileNetworkInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.MobileNetwork.Support.NaptEnabled" - } - ], - "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "System.String[]": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IAzureStackEdgeDeviceResourceId, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlanePropertiesFormatInteropSettings": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlanePropertiesFormatInteropSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPacketCoreControlPlanePropertiesFormatInteropSettings, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteResourceId, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api30.IUserAssignedIdentities, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.AuthenticationType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.MobileNetwork.Support.AuthenticationType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "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.MobileNetwork.Support.BillingSku": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + ] }, { - "Name": "Equals", + "Name": "UpdateViaIdentityExpanded", "Parameters": [ { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.BillingSku" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IMobileNetworkIdentity, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkName": "System.String", + "DataNetworkName": "System.String", + "Id": "System.String", + "MobileNetworkName": "System.String", + "PacketCoreControlPlaneName": "System.String", + "PacketCoreDataPlaneName": "System.String", + "ResourceGroupName": "System.String", + "ServiceName": "System.String", + "SimGroupName": "System.String", + "SimName": "System.String", + "SimPolicyName": "System.String", + "SiteName": "System.String", + "SliceName": "System.String", + "SubscriptionId": "System.String", + "VersionName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { - "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.MobileNetwork.Support.PlatformType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "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.MobileNetwork.Support.CertificateProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CertificateProvisioningState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.MobileNetwork.Support.CertificateProvisioningState" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "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.MobileNetwork.Support.CoreNetworkType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.CoreNetworkType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "__AllParameterSets", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SnssaiSst", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SnssaiSd", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.MobileNetwork.Support.CoreNetworkType" - } - ], - "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.MobileNetwork.Support.InstallationState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.InstallationState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.MobileNetwork.Support.InstallationState" - } - ], - "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.MobileNetwork.Support.ManagedServiceIdentityType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ManagedServiceIdentityType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep[], Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.MobileNetwork.Support.ManagedServiceIdentityType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" + ] } ] + } + ], + "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.MobileNetwork.Models.IAny": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPlatform, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ObsoleteVersion": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion]", - "Type": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType]", - "RecommendedVersion": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion]", - "VersionState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState]", - "MaximumPlatformSoftwareVersion": "System.String", - "MinimumPlatformSoftwareVersion": "System.String" + "Info": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAny", + "Type": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion" + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ObsoleteVersion, Az.MobileNetwork.private, Version=0.4.1.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.MobileNetwork.Support.ObsoleteVersion" - } - ], - "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.MobileNetwork.Models.IErrorDetail": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IErrorDetail]", + "Code": "System.String", + "Message": "System.String", + "Target": "System.String" + } + }, + "System.Nullable`1[System.DateTime]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.DateTime" ] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType]": { + "System.DateTime": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PlatformType" - ] + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion]": { + "System.Nullable`1[System.Double]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Double]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion" + "System.Double" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.RecommendedVersion, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.SendAsyncStep, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Target": "System.Object", + "Method": "System.Reflection.MethodInfo" + }, "Methods": [ { - "Name": "CompleteArgument", + "Name": "Invoke", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.IEventListener" }, { - "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.MobileNetwork.Support.RecommendedVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.ISendAsync" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.VersionState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "BeginInvoke", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" }, { - "Name": "parameterName", - "Type": "System.String" + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.IEventListener" }, { - "Name": "wordToComplete", - "Type": "System.String" + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.ISendAsync" }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "Name": "__callback", + "Type": "System.AsyncCallback" }, { - "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.MobileNetwork.Support.VersionState" + "Name": "object", + "Type": "System.Object" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.IAsyncResult" }, { - "Name": "Equals", + "Name": "EndInvoke", "Parameters": [ { - "Name": "obj", - "Type": "System.Object" + "Name": "result", + "Type": "System.IAsyncResult" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IPccRuleConfiguration, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ServiceDataFlowTemplate": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[]", - "RulePrecedence": "System.Int32", - "RuleQoPolicyPreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "RuleQoPolicyPreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "TrafficControl": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission]", - "RuleQoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", - "RuleQoPolicyFiveQi": "System.Nullable`1[System.Int32]", - "GuaranteedBitRateDownlink": "System.String", - "GuaranteedBitRateUplink": "System.String", - "RuleName": "System.String", - "RuleQoPolicyMaximumBitRateDownlink": "System.String", - "RuleQoPolicyMaximumBitRateUplink": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceDataFlowTemplate, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Direction": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection", - "TemplateName": "System.String", - "Port": "System.String[]", - "Protocol": "System.String[]", - "RemoteIPList": "System.String[]" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SdfDirection, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "GetObjectData", "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": "info", + "Type": "System.Runtime.Serialization.SerializationInfo" }, { - "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.MobileNetwork.Support.SdfDirection" + "Name": "context", + "Type": "System.Runtime.Serialization.StreamingContext" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.Void" }, { "Name": "Equals", @@ -37842,475 +69707,322 @@ "ReturnType": "System.Boolean" }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "GetInvocationList", + "ReturnType": "System.Delegate[]" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability, Az.MobileNetwork.private, Version=0.4.1.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": "GetHashCode", + "ReturnType": "System.Int32" }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability" - } - ], - "ReturnType": "System.Boolean" + "Name": "Clone", + "ReturnType": "System.Object" }, { - "Name": "Equals", + "Name": "DynamicInvoke", "Parameters": [ { - "Name": "obj", - "Type": "System.Object" + "Name": "args", + "Type": "System.Object[]" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.Object" }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "GetType", + "ReturnType": "System.Type" }, { "Name": "ToString", "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" } - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + ], + "Constructors": [ { - "Name": "CompleteArgument", + "Name": "", "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": "object", + "Type": "System.Reflection.RuntimeParameterInfo" }, { - "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.MobileNetwork.Support.PreemptionVulnerability" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + "Name": "method", + "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "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.MobileNetwork.Support.TrafficControlPermission]": { + "System.Object": { + "Namespace": "System", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "System.IAsyncResult": { + "Namespace": "System", + "Name": "System.IAsyncResult", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Delegate[]": { + "Namespace": "System", + "Name": "System.Delegate[]", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Delegate" + }, + "System.Delegate": { + "Namespace": "System", + "Name": "System.Delegate", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Type": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Collections.Generic.List`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission" + "System.String" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.TrafficControlPermission, Az.MobileNetwork.private, Version=0.4.1.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.MobileNetwork.Support.TrafficControlPermission" - } - ], - "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties" + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlanePropertiesFormatInteropSettings": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlanePropertiesFormatInteropSettings", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPacketCoreControlPlanePropertiesFormatInteropSettings, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IUserAssignedIdentities, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IAzureStackEdgeDeviceResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AttachedDataNetworkId": "System.String", - "SlouseId": "System.String", - "StaticIPIpv4Address": "System.String" + "Id": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId" + ] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState" + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState, Az.MobileNetwork.private, Version=0.4.1.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.MobileNetwork.Support.SimState" - } - ], - "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.MobileNetwork.Models.IPlatform": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPlatform, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MaximumPlatformSoftwareVersion": "System.String", + "MinimumPlatformSoftwareVersion": "System.String", + "ObsoleteVersion": "System.String", + "RecommendedVersion": "System.String", + "Type": "System.String", + "VersionState": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration" + ] + }, + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IPccRuleConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ServiceDataFlowTemplate": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate]", + "RulePrecedence": "System.Int32", + "RuleQoPolicyAllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", + "RuleQoPolicyFiveQi": "System.Nullable`1[System.Int32]", + "GuaranteedBitRateDownlink": "System.String", + "GuaranteedBitRateUplink": "System.String", + "RuleName": "System.String", + "RuleQoPolicyMaximumBitRateDownlink": "System.String", + "RuleQoPolicyMaximumBitRateUplink": "System.String", + "RuleQoPolicyPreemptionCapability": "System.String", + "RuleQoPolicyPreemptionVulnerability": "System.String", + "TrafficControl": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate" + ] + }, + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceDataFlowTemplate, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Port": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.Collections.Generic.List`1[System.String]", + "RemoteIPList": "System.Collections.Generic.List`1[System.String]", + "Direction": "System.String", + "TemplateName": "System.String" + } + }, + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration" + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AttachedDataNetworkId": "System.String", + "SlouseId": "System.String", + "StaticIPIpv4Address": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISliceConfiguration, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISliceConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DataNetworkConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[]", + "DataNetworkConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration]", "DefaultDataNetworkId": "System.String", "SlouseId": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IDataNetworkConfiguration, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IDataNetworkConfiguration, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowedService": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[]", - "AdditionalAllowedSessionType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[]", - "DefaultSessionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType]", - "PreemptionCapability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionCapability]", - "PreemptionVulnerability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PreemptionVulnerability]", + "AllowedService": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId]", + "AdditionalAllowedSessionType": "System.Collections.Generic.List`1[System.String]", "AllocationAndRetentionPriorityLevel": "System.Nullable`1[System.Int32]", "FiveQi": "System.Nullable`1[System.Int32]", "MaximumNumberOfBufferedPacket": "System.Nullable`1[System.Int32]", "DataNetworkId": "System.String", + "DefaultSessionType": "System.String", + "PreemptionCapability": "System.String", + "PreemptionVulnerability": "System.String", "SessionAmbrDownlink": "System.String", "SessionAmbrUplink": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.IServiceResourceId, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.IServiceResourceId, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType, Az.MobileNetwork.private, Version=0.4.1.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.MobileNetwork.Support.PduSessionType" - } - ], - "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.MobileNetwork.Support.PduSessionType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.PduSessionType" + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource[], Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource" - }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISubResource, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISubResource, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -38318,7 +70030,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Item": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Runtime.Json.JsonNode" }, @@ -38347,41 +70059,41 @@ } ] }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndProperties, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndProperties, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StaticIPConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "SimState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState]", + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "StaticIPConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]", "AuthenticationKey": "System.String", "DeviceType": "System.String", "IntegratedCircuitCardIdentifier": "System.String", "InternationalMobileSubscriberIdentity": "System.String", "Name": "System.String", "OperatorKeyCode": "System.String", + "ProvisioningState": "System.String", "SimPolicyId": "System.String", + "SimState": "System.String", "VendorKeyFingerprint": "System.String", "VendorName": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimNameAndEncryptedProperties, Az.MobileNetwork.private, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimNameAndEncryptedProperties, Az.MobileNetwork.private, Version=0.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StaticIPConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISimStaticIPProperties[]", - "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.Api20221101.ISiteProvisioning", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.ProvisioningState]", - "SimState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Support.SimState]", + "SiteProvisioningState": "Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISiteProvisioning", + "StaticIPConfiguration": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.MobileNetwork.Models.ISimStaticIPProperties]", "DeviceType": "System.String", "EncryptedCredentials": "System.String", "IntegratedCircuitCardIdentifier": "System.String", "InternationalMobileSubscriberIdentity": "System.String", "Name": "System.String", + "ProvisioningState": "System.String", "SimPolicyId": "System.String", + "SimState": "System.String", "VendorKeyFingerprint": "System.String", "VendorName": "System.String" } diff --git a/tools/Tools.Common/SerializedCmdlets/Az.MySql.json b/tools/Tools.Common/SerializedCmdlets/Az.MySql.json index 4298591458eb..cb92b3b0bc1d 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.MySql.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.MySql.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.MySql", - "ModuleVersion": "1.3.0", + "ModuleVersion": "1.4.0", "Cmdlets": [ { "VerbName": "Get", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -40,7 +40,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -49,7 +49,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -58,7 +58,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -67,7 +67,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -77,7 +77,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -104,7 +104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -113,7 +113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -122,7 +122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -132,7 +132,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -142,7 +142,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -151,7 +151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -160,7 +160,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -178,7 +190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -193,7 +205,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -208,7 +220,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -223,7 +235,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -243,7 +255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -258,7 +270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -273,7 +285,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -289,7 +301,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -305,7 +317,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -320,7 +332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -335,7 +347,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -355,7 +385,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -370,7 +400,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -385,7 +415,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -405,7 +435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -420,7 +450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -435,7 +465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -451,7 +481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -467,7 +497,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -482,7 +512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -497,7 +527,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -517,7 +565,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -550,7 +598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -565,7 +613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -580,7 +628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -596,7 +644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -612,7 +660,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -627,7 +675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -642,7 +690,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -666,7 +732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -681,7 +747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -696,7 +762,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -712,7 +778,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -728,7 +794,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -743,7 +809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -758,7 +824,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -785,7 +869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -798,7 +882,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -810,7 +894,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -819,7 +903,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -828,7 +912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -837,7 +921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -878,7 +962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -887,7 +971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -896,7 +980,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -906,7 +990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -916,7 +1000,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -925,7 +1009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -934,7 +1018,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -949,7 +1045,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -968,7 +1064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -983,7 +1079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -998,7 +1094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1014,7 +1110,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1030,7 +1126,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1045,7 +1141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1060,7 +1156,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1083,7 +1197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1098,7 +1212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1113,7 +1227,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1128,7 +1242,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1147,7 +1261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1162,7 +1276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1177,7 +1291,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1193,7 +1307,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1209,7 +1323,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1224,7 +1338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1239,7 +1353,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1259,7 +1391,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -1302,7 +1434,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1321,7 +1453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1336,7 +1468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1351,7 +1483,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1367,7 +1499,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1383,7 +1515,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1398,7 +1530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1413,7 +1545,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1440,7 +1590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -1460,7 +1610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1469,7 +1619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1478,7 +1628,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1487,7 +1637,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1497,7 +1647,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -1524,7 +1674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1533,7 +1683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1542,7 +1692,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1552,7 +1702,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1562,7 +1712,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1571,7 +1721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1580,7 +1730,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1598,7 +1760,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1613,7 +1775,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1628,7 +1790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1643,7 +1805,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1663,7 +1825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1678,7 +1840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1693,7 +1855,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1709,7 +1871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1725,7 +1887,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1740,7 +1902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1755,7 +1917,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1775,7 +1955,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1790,7 +1970,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1805,7 +1985,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1825,7 +2005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1840,7 +2020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1855,7 +2035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1871,7 +2051,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1887,7 +2067,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1902,7 +2082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1917,7 +2097,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1937,7 +2135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -1970,7 +2168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1985,7 +2183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2000,7 +2198,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2016,7 +2214,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2032,7 +2230,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2047,7 +2245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2062,7 +2260,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2086,7 +2302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2101,7 +2317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2116,7 +2332,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2132,7 +2348,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2148,7 +2364,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2163,7 +2379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2178,7 +2394,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2205,7 +2439,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -2259,7 +2493,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2268,7 +2502,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2277,7 +2511,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2287,7 +2521,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -2314,7 +2548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2323,7 +2557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2332,7 +2566,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2342,7 +2576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2352,7 +2586,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2361,7 +2595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2370,7 +2604,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2388,7 +2634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2403,7 +2649,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2418,7 +2664,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2438,7 +2684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2453,7 +2699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2468,7 +2714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2484,7 +2730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2500,7 +2746,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2515,7 +2761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2530,7 +2776,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2550,7 +2814,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2565,7 +2829,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2585,7 +2849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2600,7 +2864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2615,7 +2879,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2631,7 +2895,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2647,7 +2911,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2662,7 +2926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2677,7 +2941,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2697,7 +2979,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2717,7 +2999,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2732,7 +3014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2747,7 +3029,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2763,7 +3045,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2779,7 +3061,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2794,7 +3076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2809,7 +3091,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2829,7 +3129,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -2862,7 +3162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2877,7 +3177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2892,7 +3192,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2908,7 +3208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2924,7 +3224,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2939,7 +3239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2954,7 +3254,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2978,7 +3296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2993,7 +3311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3008,7 +3326,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3024,7 +3342,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3040,7 +3358,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3055,7 +3373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3070,7 +3388,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3097,7 +3433,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230.IAdvancedThreatProtection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230.IAdvancedThreatProtection, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230.IAdvancedThreatProtection, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState]", "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState]", @@ -3115,7 +3451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3124,7 +3460,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3133,7 +3469,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3147,7 +3483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3156,7 +3492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3165,7 +3501,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3175,7 +3511,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3185,7 +3521,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3194,7 +3530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3203,7 +3539,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3218,7 +3566,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3233,7 +3581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3248,7 +3596,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3268,7 +3616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3283,7 +3631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3298,7 +3646,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3314,7 +3662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3330,7 +3678,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3345,7 +3693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3360,7 +3708,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3387,7 +3753,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IConfigurationAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IConfigurationAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IConfigurationAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -3420,7 +3786,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3429,7 +3795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3438,7 +3804,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3447,7 +3813,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3457,7 +3823,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -3484,7 +3850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3493,7 +3859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3502,7 +3868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3512,7 +3878,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3522,7 +3888,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3531,7 +3897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3540,7 +3906,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3558,7 +3936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3573,7 +3951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3588,7 +3966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3603,7 +3981,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3623,7 +4001,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3638,7 +4016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3653,7 +4031,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3669,7 +4047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3685,7 +4063,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3700,7 +4078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3715,7 +4093,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3735,7 +4131,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3750,7 +4146,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3765,7 +4161,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3785,7 +4181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3800,7 +4196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3815,7 +4211,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3831,7 +4227,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3847,7 +4243,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3862,7 +4258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3877,7 +4273,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3897,7 +4311,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -3930,7 +4344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3945,7 +4359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3960,7 +4374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3976,7 +4390,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3992,7 +4406,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4007,7 +4421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4022,7 +4436,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4046,7 +4478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4061,7 +4493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4076,7 +4508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4092,7 +4524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4108,7 +4540,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4123,7 +4555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4138,7 +4570,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4165,7 +4615,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -4178,7 +4628,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4190,7 +4640,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4199,7 +4649,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4208,7 +4658,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4217,7 +4667,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -4244,7 +4694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4253,7 +4703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4262,7 +4712,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4272,7 +4722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4282,7 +4732,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4291,7 +4741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4300,7 +4750,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4315,7 +4777,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4334,7 +4796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4349,7 +4811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4364,7 +4826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4380,7 +4842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4396,7 +4858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4411,7 +4873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4426,7 +4888,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4449,7 +4929,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4464,7 +4944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4479,7 +4959,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4494,7 +4974,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4513,7 +4993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4528,7 +5008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4543,7 +5023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4559,7 +5039,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4575,7 +5055,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4590,7 +5070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4605,7 +5085,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4625,7 +5123,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -4654,7 +5152,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4673,7 +5171,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4688,7 +5186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4703,7 +5201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4719,7 +5217,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4735,7 +5233,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4750,7 +5248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4765,7 +5263,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4792,7 +5308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IDatabaseAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IDatabaseAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IDatabaseAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -4818,7 +5334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4827,7 +5343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4836,7 +5352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4845,7 +5361,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4855,7 +5371,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -4882,7 +5398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4891,7 +5407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4900,7 +5416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4910,7 +5426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4920,7 +5436,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4929,7 +5445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4938,7 +5454,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4956,7 +5484,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4971,7 +5499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4986,7 +5514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5001,7 +5529,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5021,7 +5549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5036,7 +5564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5051,7 +5579,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5067,7 +5595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5083,7 +5611,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5098,7 +5626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5113,7 +5641,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5133,7 +5679,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5148,7 +5694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5163,7 +5709,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5183,7 +5729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5198,7 +5744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5213,7 +5759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5229,7 +5775,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5245,7 +5791,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5260,7 +5806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5275,7 +5821,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5295,7 +5859,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -5328,7 +5892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5343,7 +5907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5358,7 +5922,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5374,7 +5938,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5390,7 +5954,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5405,7 +5969,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5420,7 +5984,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5444,7 +6026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5459,7 +6041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5474,7 +6056,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5490,7 +6072,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5506,7 +6088,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5521,7 +6103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5536,7 +6118,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5563,7 +6163,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IFirewallRuleAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IFirewallRuleAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IFirewallRuleAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -5589,7 +6189,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5598,7 +6198,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5607,7 +6207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5616,7 +6216,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5626,7 +6226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -5653,7 +6253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5662,7 +6262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5671,7 +6271,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5681,7 +6281,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5691,7 +6291,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5700,7 +6300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5709,7 +6309,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5727,7 +6339,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5742,7 +6354,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5757,7 +6369,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5772,7 +6384,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5792,7 +6404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5807,7 +6419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5822,7 +6434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5838,7 +6450,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5854,7 +6466,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5869,7 +6481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5884,7 +6496,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5904,7 +6534,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5919,7 +6549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5934,7 +6564,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5954,7 +6584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5969,7 +6599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5984,7 +6614,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6000,7 +6630,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6016,7 +6646,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6031,7 +6661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6046,7 +6676,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6066,7 +6714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -6099,7 +6747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6114,7 +6762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6129,7 +6777,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6145,7 +6793,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6161,7 +6809,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6176,7 +6824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6191,7 +6839,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6215,7 +6881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6230,7 +6896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6245,7 +6911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6261,7 +6927,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6277,7 +6943,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6292,7 +6958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6307,7 +6973,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6334,7 +7018,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ICapabilityProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ICapabilityProperties, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ICapabilityProperties, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedFlexibleServerEdition": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability[]", "Zone": "System.String", @@ -6353,7 +7037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6362,7 +7046,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6376,7 +7060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6385,7 +7069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6394,7 +7078,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6404,7 +7088,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6414,7 +7098,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6423,7 +7107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6432,7 +7116,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6447,7 +7143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6462,7 +7158,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6482,7 +7178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6497,7 +7193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6512,7 +7208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6528,7 +7224,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6544,7 +7240,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6559,7 +7255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6574,7 +7270,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6601,7 +7315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -6652,7 +7366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6661,7 +7375,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6670,7 +7384,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6684,7 +7398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6693,7 +7407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6702,7 +7416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6712,7 +7426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6722,7 +7436,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6731,7 +7445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6740,7 +7454,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6755,7 +7481,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6770,7 +7496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6785,7 +7511,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6805,7 +7531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6820,7 +7546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6835,7 +7561,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6851,7 +7577,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6867,7 +7593,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6882,7 +7608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6897,7 +7623,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6924,7 +7668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -6965,7 +7709,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6974,7 +7718,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6983,7 +7727,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6997,7 +7741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7006,7 +7750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7015,7 +7759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7025,7 +7769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7035,7 +7779,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7044,7 +7788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7053,7 +7797,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7068,7 +7824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7083,7 +7839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7098,7 +7854,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7118,7 +7874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7133,7 +7889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7148,7 +7904,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7164,7 +7920,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7180,7 +7936,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7195,7 +7951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7210,7 +7966,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7237,7 +8011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -7281,7 +8055,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7290,7 +8064,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7299,7 +8073,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7309,7 +8083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -7336,7 +8110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7345,7 +8119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7354,7 +8128,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7364,7 +8138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7374,7 +8148,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7383,7 +8157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7392,7 +8166,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7410,7 +8196,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7425,7 +8211,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7440,7 +8226,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7460,7 +8246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7475,7 +8261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7490,7 +8276,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7506,7 +8292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7522,7 +8308,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7537,7 +8323,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7552,7 +8338,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7572,7 +8376,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7587,7 +8391,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7607,7 +8411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7622,7 +8426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7637,7 +8441,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7653,7 +8457,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7669,7 +8473,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7684,7 +8488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7699,7 +8503,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7719,7 +8541,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7739,7 +8561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7754,7 +8576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7769,7 +8591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7785,7 +8607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7801,7 +8623,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7816,7 +8638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7831,7 +8653,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7851,7 +8691,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -7884,7 +8724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7899,7 +8739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7914,7 +8754,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7930,7 +8770,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7946,7 +8786,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7961,7 +8801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7976,7 +8816,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8000,7 +8858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8015,7 +8873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8030,7 +8888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8046,7 +8904,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8062,7 +8920,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8077,7 +8935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8092,7 +8950,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8119,7 +8995,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -8140,7 +9016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8149,7 +9025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8158,7 +9034,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8167,7 +9043,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8177,7 +9053,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -8204,7 +9080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8213,7 +9089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8222,7 +9098,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8232,7 +9108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8242,7 +9118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8251,7 +9127,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8260,7 +9136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8269,7 +9145,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8287,7 +9175,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8302,7 +9190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8317,7 +9205,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8332,7 +9220,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8352,7 +9240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8367,7 +9255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8382,7 +9270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8398,7 +9286,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8414,7 +9302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8429,7 +9317,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8444,7 +9332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8459,7 +9347,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8479,7 +9385,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8494,7 +9400,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8509,7 +9415,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8529,7 +9435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8544,7 +9450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8559,7 +9465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8575,7 +9481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8591,7 +9497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8606,7 +9512,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8621,7 +9527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8636,7 +9542,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8656,7 +9580,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -8689,7 +9613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8704,7 +9628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8719,7 +9643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8735,7 +9659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8751,7 +9675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8766,7 +9690,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8781,7 +9705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8796,7 +9720,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8820,7 +9762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8835,7 +9777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8850,7 +9792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8866,7 +9808,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8882,7 +9824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8897,7 +9839,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8912,7 +9854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8927,7 +9869,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8954,7 +9914,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -8971,7 +9931,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8980,7 +9940,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8992,7 +9952,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9001,7 +9961,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9010,7 +9970,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9019,7 +9979,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9028,7 +9988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9037,7 +9997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9050,7 +10010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9059,7 +10019,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9068,7 +10028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9077,7 +10037,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9087,7 +10047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9097,7 +10057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9106,7 +10066,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9115,7 +10075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9124,7 +10084,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9139,7 +10111,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9154,7 +10126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9172,7 +10144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9187,7 +10159,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9206,7 +10178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9221,7 +10193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9236,7 +10208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9251,7 +10223,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9267,7 +10239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9283,7 +10255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9298,7 +10270,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9313,7 +10285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9328,7 +10300,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9348,7 +10338,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9363,7 +10353,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9378,7 +10368,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9393,7 +10383,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9411,7 +10401,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9426,7 +10416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9445,7 +10435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9460,7 +10450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9475,7 +10465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9490,7 +10480,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9506,7 +10496,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9522,7 +10512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9537,7 +10527,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9552,7 +10542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9567,7 +10557,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9587,7 +10595,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9602,7 +10610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9617,7 +10625,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9635,7 +10643,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9650,7 +10658,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9669,7 +10677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9684,7 +10692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9699,7 +10707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9714,7 +10722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9730,7 +10738,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9746,7 +10754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9761,7 +10769,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9776,7 +10784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9791,7 +10799,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9811,7 +10837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9826,7 +10852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9841,7 +10867,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9859,7 +10885,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9874,7 +10900,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9893,7 +10919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9908,7 +10934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9923,7 +10949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9938,7 +10964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9954,7 +10980,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9970,7 +10996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9985,7 +11011,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10000,7 +11026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10015,7 +11041,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10042,7 +11086,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -10096,7 +11140,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10105,7 +11149,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10114,7 +11158,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10123,7 +11167,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10132,7 +11176,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10141,7 +11185,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10150,7 +11194,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10159,7 +11203,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10168,7 +11212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10177,7 +11221,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10186,7 +11230,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10195,7 +11239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10204,7 +11248,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10213,7 +11257,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10222,7 +11266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10231,7 +11275,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10240,7 +11284,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10249,7 +11293,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10258,7 +11302,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10267,7 +11311,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10276,7 +11320,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10288,7 +11332,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10301,7 +11345,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10310,7 +11354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10319,7 +11363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10328,7 +11372,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10338,7 +11382,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10348,7 +11392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10357,7 +11401,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10366,7 +11410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10375,7 +11419,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10393,7 +11449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10408,7 +11464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10423,7 +11479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10438,7 +11494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10453,7 +11509,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10468,7 +11524,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10483,7 +11539,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10498,7 +11554,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10513,7 +11569,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10528,7 +11584,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10543,7 +11599,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10558,7 +11614,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10573,7 +11629,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10588,7 +11644,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10603,7 +11659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10618,7 +11674,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10633,7 +11689,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10648,7 +11704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10663,7 +11719,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10678,7 +11734,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10693,7 +11749,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10711,7 +11767,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10730,7 +11786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10745,7 +11801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10760,7 +11816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10775,7 +11831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10791,7 +11847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10807,7 +11863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10822,7 +11878,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10837,7 +11893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10852,7 +11908,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10879,7 +11953,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IDatabaseAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IDatabaseAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IDatabaseAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -10905,7 +11979,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10914,7 +11988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10923,7 +11997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10932,7 +12006,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10941,7 +12015,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -10964,7 +12038,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10973,7 +12047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10986,7 +12060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10995,7 +12069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11004,7 +12078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11013,7 +12087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11023,7 +12097,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11033,7 +12107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11042,7 +12116,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11051,7 +12125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11060,7 +12134,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11078,7 +12164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11093,7 +12179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11108,7 +12194,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11123,7 +12209,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11138,7 +12224,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11153,7 +12239,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11172,7 +12258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11187,7 +12273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11202,7 +12288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11217,7 +12303,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11233,7 +12319,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11249,7 +12335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11264,7 +12350,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11279,7 +12365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11294,7 +12380,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11314,7 +12418,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -11343,7 +12447,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11358,7 +12462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11377,7 +12481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11392,7 +12496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11407,7 +12511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11422,7 +12526,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11438,7 +12542,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11454,7 +12558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11469,7 +12573,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11484,7 +12588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11499,7 +12603,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11519,7 +12641,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11534,7 +12656,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11553,7 +12675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11568,7 +12690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11583,7 +12705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11598,7 +12720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11614,7 +12736,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11630,7 +12752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11645,7 +12767,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11660,7 +12782,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11675,7 +12797,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11702,7 +12842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -11719,7 +12859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11728,7 +12868,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11740,7 +12880,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11749,7 +12889,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11758,7 +12898,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11767,7 +12907,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11776,7 +12916,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11785,7 +12925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11798,7 +12938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11807,7 +12947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11816,7 +12956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11825,7 +12965,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11835,7 +12975,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11845,7 +12985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11854,7 +12994,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11863,7 +13003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11872,7 +13012,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11887,7 +13039,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11902,7 +13054,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11920,7 +13072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11935,7 +13087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11954,7 +13106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11969,7 +13121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11984,7 +13136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11999,7 +13151,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12015,7 +13167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12031,7 +13183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12046,7 +13198,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12061,7 +13213,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12076,7 +13228,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12096,7 +13266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12111,7 +13281,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12126,7 +13296,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12141,7 +13311,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12159,7 +13329,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12174,7 +13344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12193,7 +13363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12208,7 +13378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12223,7 +13393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12238,7 +13408,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12254,7 +13424,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12270,7 +13440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12285,7 +13455,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12300,7 +13470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12315,7 +13485,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12335,7 +13523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12350,7 +13538,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12365,7 +13553,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12383,7 +13571,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12398,7 +13586,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12417,7 +13605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12432,7 +13620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12447,7 +13635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12462,7 +13650,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12478,7 +13666,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12494,7 +13682,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12509,7 +13697,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12524,7 +13712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12539,7 +13727,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12559,7 +13765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12574,7 +13780,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12589,7 +13795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12607,7 +13813,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12622,7 +13828,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12641,7 +13847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12656,7 +13862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12671,7 +13877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12686,7 +13892,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12702,7 +13908,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12718,7 +13924,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12733,7 +13939,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12748,7 +13954,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12763,7 +13969,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12790,7 +14014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -12845,7 +14069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12854,7 +14078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12863,7 +14087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12875,7 +14099,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -12922,7 +14146,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12935,7 +14159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12944,7 +14168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12953,7 +14177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12962,7 +14186,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12972,7 +14196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12982,7 +14206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12991,7 +14215,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13000,7 +14224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13009,7 +14233,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13028,7 +14264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13043,7 +14279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13058,7 +14294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13076,7 +14312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -13129,7 +14365,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13148,7 +14384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13163,7 +14399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13178,7 +14414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13193,7 +14429,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13209,7 +14445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13225,7 +14461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13240,7 +14476,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13255,7 +14491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13270,7 +14506,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13297,7 +14551,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -13342,7 +14596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13351,7 +14605,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13360,7 +14614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13372,7 +14626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -13409,7 +14663,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13418,7 +14672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13431,7 +14685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13440,7 +14694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13449,7 +14703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13458,7 +14712,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13468,7 +14722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13478,7 +14732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13487,7 +14741,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13496,7 +14750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13505,7 +14759,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13524,7 +14790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13539,7 +14805,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13554,7 +14820,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13572,7 +14838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -13615,7 +14881,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13630,7 +14896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13649,7 +14915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13664,7 +14930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13679,7 +14945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13694,7 +14960,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13710,7 +14976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13726,7 +14992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13741,7 +15007,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13756,7 +15022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13771,7 +15037,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13798,7 +15082,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -13842,7 +15126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13851,7 +15135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13860,7 +15144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13869,7 +15153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13878,7 +15162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13887,7 +15171,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13896,7 +15180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13905,7 +15189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13914,7 +15198,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13923,7 +15207,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13932,7 +15216,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13941,7 +15225,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13950,7 +15234,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13959,7 +15243,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13968,7 +15252,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13981,7 +15265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13990,7 +15274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13999,7 +15283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14008,7 +15292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14018,7 +15302,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14028,7 +15312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14037,7 +15321,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14046,7 +15330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14055,7 +15339,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -14073,7 +15369,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14088,7 +15384,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14103,7 +15399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14118,7 +15414,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14133,7 +15429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14148,7 +15444,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14163,7 +15459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14178,7 +15474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14193,7 +15489,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14208,7 +15504,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14223,7 +15519,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14238,7 +15534,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14253,7 +15549,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14268,7 +15564,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14283,7 +15579,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14302,7 +15598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14317,7 +15613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14332,7 +15628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14347,7 +15643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14363,7 +15659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14379,7 +15675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14394,7 +15690,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14409,7 +15705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14424,7 +15720,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14451,7 +15765,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -14472,7 +15786,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14481,7 +15795,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14490,7 +15804,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14499,7 +15813,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14508,7 +15822,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14517,7 +15831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14530,7 +15844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14539,7 +15853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14548,7 +15862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14557,7 +15871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14567,7 +15881,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14577,7 +15891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14586,7 +15900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14595,7 +15909,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14604,7 +15918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14613,7 +15927,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -14631,7 +15957,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14646,7 +15972,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14661,7 +15987,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14676,7 +16002,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14691,7 +16017,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14706,7 +16032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14725,7 +16051,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14740,7 +16066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14755,7 +16081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14770,7 +16096,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14786,7 +16112,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14802,7 +16128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14817,7 +16143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14832,7 +16158,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14847,7 +16173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14862,7 +16188,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14889,7 +16233,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -14905,7 +16249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14914,7 +16258,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14923,7 +16267,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14932,7 +16276,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14941,7 +16285,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -14968,7 +16312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14977,7 +16321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14986,7 +16330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14995,7 +16339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15005,7 +16349,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15015,7 +16359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15024,7 +16368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15033,7 +16377,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15042,7 +16386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15051,7 +16395,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15069,7 +16425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15084,7 +16440,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15099,7 +16455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15114,7 +16470,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15133,7 +16489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15148,7 +16504,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15163,7 +16519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15178,7 +16534,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15194,7 +16550,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15210,7 +16566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15225,7 +16581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15240,7 +16596,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15255,7 +16611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15270,7 +16626,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15290,7 +16664,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -15323,7 +16697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15338,7 +16712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15353,7 +16727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15368,7 +16742,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15384,7 +16758,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15400,7 +16774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15415,7 +16789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15430,7 +16804,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15445,7 +16819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15460,7 +16834,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15484,7 +16876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15499,7 +16891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15514,7 +16906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15529,7 +16921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15545,7 +16937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15561,7 +16953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15576,7 +16968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15591,7 +16983,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15606,7 +16998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15621,7 +17013,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15648,7 +17058,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -15664,7 +17074,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15673,7 +17083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15682,7 +17092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15691,7 +17101,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -15718,7 +17128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15727,7 +17137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15736,7 +17146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15745,7 +17155,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15755,7 +17165,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15765,7 +17175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15774,7 +17184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15783,7 +17193,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15792,7 +17202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15801,7 +17211,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15819,7 +17241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15834,7 +17256,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15849,7 +17271,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15868,7 +17290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15883,7 +17305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15898,7 +17320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15913,7 +17335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15929,7 +17351,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15945,7 +17367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15960,7 +17382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15975,7 +17397,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15990,7 +17412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16005,7 +17427,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16025,7 +17465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -16058,7 +17498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16073,7 +17513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16088,7 +17528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16103,7 +17543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16119,7 +17559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16135,7 +17575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16150,7 +17590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16165,7 +17605,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16180,7 +17620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16195,7 +17635,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16219,7 +17677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16234,7 +17692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16249,7 +17707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16264,7 +17722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16280,7 +17738,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16296,7 +17754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16311,7 +17769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16326,7 +17784,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16341,7 +17799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16356,7 +17814,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16383,7 +17859,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -16399,7 +17875,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16408,7 +17884,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16417,7 +17893,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16426,7 +17902,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16435,7 +17911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -16462,7 +17938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16471,7 +17947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16480,7 +17956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16489,7 +17965,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16499,7 +17975,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16509,7 +17985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16518,7 +17994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16527,7 +18003,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16536,7 +18012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16545,7 +18021,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -16563,7 +18051,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16578,7 +18066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16593,7 +18081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16608,7 +18096,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16627,7 +18115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16642,7 +18130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16657,7 +18145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16672,7 +18160,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16688,7 +18176,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16704,7 +18192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16719,7 +18207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16734,7 +18222,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16749,7 +18237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16764,7 +18252,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16784,7 +18290,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -16817,7 +18323,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16832,7 +18338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16847,7 +18353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16862,7 +18368,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16878,7 +18384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16894,7 +18400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16909,7 +18415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16924,7 +18430,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16939,7 +18445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16954,7 +18460,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16978,7 +18502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16993,7 +18517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17008,7 +18532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17023,7 +18547,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17039,7 +18563,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17055,7 +18579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17070,7 +18594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17085,7 +18609,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17100,7 +18624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17115,7 +18639,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17142,7 +18684,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -17158,7 +18700,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17167,7 +18709,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17176,7 +18718,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17185,7 +18727,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17194,7 +18736,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -17221,7 +18763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17230,7 +18772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17239,7 +18781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17248,7 +18790,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17258,7 +18800,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17268,7 +18810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17277,7 +18819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17286,7 +18828,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17295,7 +18837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17304,7 +18846,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -17322,7 +18876,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17337,7 +18891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17352,7 +18906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17367,7 +18921,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17386,7 +18940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17401,7 +18955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17416,7 +18970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17431,7 +18985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17447,7 +19001,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17463,7 +19017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17478,7 +19032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17493,7 +19047,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17508,7 +19062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17523,7 +19077,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17543,7 +19115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -17576,7 +19148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17591,7 +19163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17606,7 +19178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17621,7 +19193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17637,7 +19209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17653,7 +19225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17668,7 +19240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17683,7 +19255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17698,7 +19270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17713,7 +19285,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17737,7 +19327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17752,7 +19342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17767,7 +19357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17782,7 +19372,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17798,7 +19388,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17814,7 +19404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17829,7 +19419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17844,7 +19434,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17859,7 +19449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17874,7 +19464,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17901,7 +19509,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -17917,7 +19525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17926,7 +19534,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17935,7 +19543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17944,7 +19552,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -17971,7 +19579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17980,7 +19588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17989,7 +19597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17998,7 +19606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18008,7 +19616,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18018,7 +19626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18027,7 +19635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18036,7 +19644,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18045,7 +19653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18054,7 +19662,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -18072,7 +19692,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18087,7 +19707,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18102,7 +19722,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18121,7 +19741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18136,7 +19756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18151,7 +19771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18166,7 +19786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18182,7 +19802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18198,7 +19818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18213,7 +19833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18228,7 +19848,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18243,7 +19863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18258,7 +19878,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18278,7 +19916,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -18311,7 +19949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18326,7 +19964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18341,7 +19979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18356,7 +19994,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18372,7 +20010,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18388,7 +20026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18403,7 +20041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18418,7 +20056,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18433,7 +20071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18448,7 +20086,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18472,7 +20128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18487,7 +20143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18502,7 +20158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18517,7 +20173,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18533,7 +20189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18549,7 +20205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18564,7 +20220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18579,7 +20235,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18594,7 +20250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18609,7 +20265,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18636,7 +20310,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -18652,7 +20326,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18661,7 +20335,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18670,7 +20344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18679,7 +20353,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18688,7 +20362,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -18715,7 +20389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18724,7 +20398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18733,7 +20407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18742,7 +20416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18752,7 +20426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18762,7 +20436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18771,7 +20445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18780,7 +20454,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18789,7 +20463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18798,7 +20472,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -18816,7 +20502,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18831,7 +20517,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18846,7 +20532,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18861,7 +20547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18880,7 +20566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18895,7 +20581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18910,7 +20596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18925,7 +20611,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18941,7 +20627,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18957,7 +20643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18972,7 +20658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18987,7 +20673,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19002,7 +20688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19017,7 +20703,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19037,7 +20741,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -19070,7 +20774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19085,7 +20789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19100,7 +20804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19115,7 +20819,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19131,7 +20835,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19147,7 +20851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19162,7 +20866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19177,7 +20881,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19192,7 +20896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19207,7 +20911,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19231,7 +20953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19246,7 +20968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19261,7 +20983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19276,7 +20998,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19292,7 +21014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19308,7 +21030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19323,7 +21045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19338,7 +21060,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19353,7 +21075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19368,7 +21090,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19395,7 +21135,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -19411,7 +21151,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19420,7 +21160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19429,7 +21169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19438,7 +21178,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -19461,7 +21201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestartWithFailover": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", "MaxFailoverSecond": "System.Nullable`1[System.Int32]" @@ -19474,7 +21214,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19483,7 +21223,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19496,7 +21236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19505,7 +21245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19514,7 +21254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19523,7 +21263,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19533,7 +21273,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19543,7 +21283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19552,7 +21292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19561,7 +21301,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19570,7 +21310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19579,7 +21319,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -19597,7 +21349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19612,7 +21364,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19627,7 +21379,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19642,7 +21394,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19657,7 +21409,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19676,7 +21428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19691,7 +21443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19706,7 +21458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19721,7 +21473,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19737,7 +21489,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19753,7 +21505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19768,7 +21520,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19783,7 +21535,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19798,7 +21550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19813,7 +21565,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19836,7 +21606,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19851,7 +21621,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19866,7 +21636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19881,7 +21651,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestartWithFailover": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", "MaxFailoverSecond": "System.Nullable`1[System.Int32]" @@ -19904,7 +21674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19919,7 +21689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19934,7 +21704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19949,7 +21719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19965,7 +21735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19981,7 +21751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19996,7 +21766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20011,7 +21781,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20026,7 +21796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20041,7 +21811,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20061,7 +21849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -20090,7 +21878,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20105,7 +21893,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20124,7 +21912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20139,7 +21927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20154,7 +21942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20169,7 +21957,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20185,7 +21973,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20201,7 +21989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20216,7 +22004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20231,7 +22019,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20246,7 +22034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20261,7 +22049,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20281,7 +22087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -20310,7 +22116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerRestartParameter, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestartWithFailover": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", "MaxFailoverSecond": "System.Nullable`1[System.Int32]" @@ -20333,7 +22139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20348,7 +22154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20363,7 +22169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20378,7 +22184,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20394,7 +22200,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20410,7 +22216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20425,7 +22231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20440,7 +22246,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20455,7 +22261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20470,7 +22276,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20494,7 +22318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20509,7 +22333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20524,7 +22348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20539,7 +22363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20555,7 +22379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20571,7 +22395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20586,7 +22410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20601,7 +22425,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20616,7 +22440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20631,7 +22455,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20658,7 +22500,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -20674,7 +22516,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20683,7 +22525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20692,7 +22534,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20701,7 +22543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -20728,7 +22570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20737,7 +22579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20746,7 +22588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20755,7 +22597,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20765,7 +22607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20775,7 +22617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20784,7 +22626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20793,7 +22635,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20802,7 +22644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20811,7 +22653,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -20829,7 +22683,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20844,7 +22698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20859,7 +22713,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20878,7 +22732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20893,7 +22747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20908,7 +22762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20923,7 +22777,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20939,7 +22793,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20955,7 +22809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20970,7 +22824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20985,7 +22839,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21000,7 +22854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21015,7 +22869,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21035,7 +22907,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -21068,7 +22940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21083,7 +22955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21098,7 +22970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21113,7 +22985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21129,7 +23001,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21145,7 +23017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21160,7 +23032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21175,7 +23047,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21190,7 +23062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21205,7 +23077,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21229,7 +23119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21244,7 +23134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21259,7 +23149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21274,7 +23164,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21290,7 +23180,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21306,7 +23196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21321,7 +23211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21336,7 +23226,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21351,7 +23241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21366,7 +23256,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21393,7 +23301,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -21447,7 +23355,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21456,7 +23364,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21465,16 +23373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RestorePointInTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21483,7 +23382,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -21525,12 +23424,57 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UseGeoRestore", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RestorePointInTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Zone", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21539,7 +23483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21548,7 +23492,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21561,7 +23505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21570,7 +23514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21579,7 +23523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21588,7 +23532,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21598,7 +23542,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21608,7 +23552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21617,7 +23561,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21626,7 +23570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21635,7 +23579,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -21653,7 +23609,657 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", + "CreateMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode]", + "NetworkPublicNetworkAccess": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", + "StorageAutoGrow": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", + "BackupGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", + "HighAvailabilityMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode]", + "HighAvailabilityState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState]", + "ReplicationRole": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole]", + "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState]", + "Version": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion]", + "SkuTier": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier]", + "BackupEarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "BackupRetentionDay": "System.Nullable`1[System.Int32]", + "StorageIop": "System.Nullable`1[System.Int32]", + "StorageSizeGb": "System.Nullable`1[System.Int32]", + "MaintenanceWindowStartMinute": "System.Nullable`1[System.Int32]", + "MaintenanceWindowStartHour": "System.Nullable`1[System.Int32]", + "MaintenanceWindowDayOfWeek": "System.Nullable`1[System.Int32]", + "ReplicaCapacity": "System.Nullable`1[System.Int32]", + "AdministratorLoginPassword": "System.Security.SecureString", + "SystemDataLastModifiedBy": "System.String", + "SystemDataCreatedBy": "System.String", + "StorageSku": "System.String", + "MaintenanceWindowCustomWindow": "System.String", + "SourceServerResourceId": "System.String", + "HighAvailabilityStandbyAvailabilityZone": "System.String", + "SkuName": "System.String", + "FullyQualifiedDomainName": "System.String", + "NetworkPrivateDnsZoneResourceId": "System.String", + "NetworkDelegatedSubnetResourceId": "System.String", + "AvailabilityZone": "System.String", + "AdministratorLogin": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GeoRestore", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UseGeoRestore", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", + "CreateMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode]", + "NetworkPublicNetworkAccess": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", + "StorageAutoGrow": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", + "BackupGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", + "HighAvailabilityMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode]", + "HighAvailabilityState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState]", + "ReplicationRole": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole]", + "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState]", + "Version": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion]", + "SkuTier": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier]", + "BackupEarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "BackupRetentionDay": "System.Nullable`1[System.Int32]", + "StorageIop": "System.Nullable`1[System.Int32]", + "StorageSizeGb": "System.Nullable`1[System.Int32]", + "MaintenanceWindowStartMinute": "System.Nullable`1[System.Int32]", + "MaintenanceWindowStartHour": "System.Nullable`1[System.Int32]", + "MaintenanceWindowDayOfWeek": "System.Nullable`1[System.Int32]", + "ReplicaCapacity": "System.Nullable`1[System.Int32]", + "AdministratorLoginPassword": "System.Security.SecureString", + "SystemDataLastModifiedBy": "System.String", + "SystemDataCreatedBy": "System.String", + "StorageSku": "System.String", + "MaintenanceWindowCustomWindow": "System.String", + "SourceServerResourceId": "System.String", + "HighAvailabilityStandbyAvailabilityZone": "System.String", + "SkuName": "System.String", + "FullyQualifiedDomainName": "System.String", + "NetworkPrivateDnsZoneResourceId": "System.String", + "NetworkDelegatedSubnetResourceId": "System.String", + "AvailabilityZone": "System.String", + "AdministratorLogin": "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "PointInTimeRestore", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RestorePointInTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Subnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateDnsZone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21668,7 +24274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21683,7 +24289,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21692,28 +24298,13 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "RestorePointInTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -21760,51 +24351,6 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateDnsZone", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -21815,7 +24361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21830,7 +24376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21845,7 +24391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21860,7 +24406,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21876,7 +24422,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21892,7 +24438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21907,7 +24453,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21922,7 +24468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21937,7 +24483,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21964,7 +24528,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -22008,7 +24572,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22017,7 +24581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22026,7 +24590,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22035,7 +24599,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -22072,7 +24636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22081,7 +24645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22090,7 +24654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22099,7 +24663,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22108,7 +24672,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22117,7 +24681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22130,7 +24694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22139,7 +24703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22148,7 +24712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22157,7 +24721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22167,7 +24731,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22177,7 +24741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22186,7 +24750,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22195,7 +24759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22204,7 +24768,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -22222,7 +24798,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22237,7 +24813,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22252,7 +24828,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22267,7 +24843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -22310,7 +24886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22325,7 +24901,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22340,7 +24916,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22359,7 +24935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22374,7 +24950,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22389,7 +24965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22404,7 +24980,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22420,7 +24996,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22436,7 +25012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22451,7 +25027,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22466,7 +25042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22481,7 +25057,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22501,7 +25095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22519,7 +25113,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22534,7 +25128,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22549,7 +25143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22564,7 +25158,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -22607,7 +25201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22622,7 +25216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22637,7 +25231,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22656,7 +25250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22671,7 +25265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22686,7 +25280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22701,7 +25295,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22717,7 +25311,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22733,7 +25327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22748,7 +25342,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22763,7 +25357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22778,7 +25372,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22798,7 +25410,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22813,7 +25425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22831,7 +25443,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22846,7 +25458,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22861,7 +25473,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22876,7 +25488,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -22919,7 +25531,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22934,7 +25546,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22949,7 +25561,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22968,7 +25580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22983,7 +25595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22998,7 +25610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23013,7 +25625,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23029,7 +25641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23045,7 +25657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23060,7 +25672,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23075,7 +25687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23090,7 +25702,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23117,7 +25747,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -23133,7 +25763,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23142,7 +25772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23151,7 +25781,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23160,7 +25790,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -23187,7 +25817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23196,7 +25826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23205,7 +25835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23214,7 +25844,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23224,7 +25854,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23234,7 +25864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23243,7 +25873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23252,7 +25882,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23261,7 +25891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23270,7 +25900,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -23288,7 +25930,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23303,7 +25945,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23318,7 +25960,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23337,7 +25979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23352,7 +25994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23367,7 +26009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23382,7 +26024,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23398,7 +26040,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23414,7 +26056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23429,7 +26071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23444,7 +26086,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23459,7 +26101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23474,7 +26116,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23494,7 +26154,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -23527,7 +26187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23542,7 +26202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23557,7 +26217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23572,7 +26232,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23588,7 +26248,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23604,7 +26264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23619,7 +26279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23634,7 +26294,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23649,7 +26309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23664,7 +26324,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23688,7 +26366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23703,7 +26381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23718,7 +26396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23733,7 +26411,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23749,7 +26427,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23765,7 +26443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23780,7 +26458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23795,7 +26473,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23810,7 +26488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23825,7 +26503,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23852,7 +26548,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -23868,7 +26564,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23877,7 +26573,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23886,7 +26582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23895,7 +26591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -23922,7 +26618,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23931,7 +26627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23940,7 +26636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23949,7 +26645,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23959,7 +26655,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23969,7 +26665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23978,7 +26674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23987,7 +26683,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23996,7 +26692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24005,7 +26701,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -24023,7 +26731,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24038,7 +26746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24053,7 +26761,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24072,7 +26780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24087,7 +26795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24102,7 +26810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24117,7 +26825,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24133,7 +26841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24149,7 +26857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24164,7 +26872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24179,7 +26887,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24194,7 +26902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24209,7 +26917,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24229,7 +26955,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -24262,7 +26988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24277,7 +27003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24292,7 +27018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24307,7 +27033,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24323,7 +27049,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24339,7 +27065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24354,7 +27080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24369,7 +27095,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24384,7 +27110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24399,7 +27125,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24423,7 +27167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24438,7 +27182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24453,7 +27197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24468,7 +27212,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24484,7 +27228,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24500,7 +27244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24515,7 +27259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24530,7 +27274,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24545,7 +27289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24560,7 +27304,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24587,7 +27349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -24603,7 +27365,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24612,7 +27374,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24621,7 +27383,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24630,7 +27392,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24639,7 +27401,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24648,7 +27410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24657,7 +27419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -24684,7 +27446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24693,7 +27455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24702,7 +27464,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24712,7 +27474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24722,7 +27484,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24731,7 +27493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24740,7 +27502,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -24758,7 +27532,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24773,7 +27547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24788,7 +27562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24803,7 +27577,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24818,7 +27592,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24833,7 +27607,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24852,7 +27626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24867,7 +27641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24882,7 +27656,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24898,7 +27672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24914,7 +27688,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24929,7 +27703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24944,7 +27718,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24967,7 +27759,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24982,7 +27774,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24997,7 +27789,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25012,7 +27804,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25027,7 +27819,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25046,7 +27838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25061,7 +27853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25076,7 +27868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25092,7 +27884,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25108,7 +27900,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25123,7 +27915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25138,7 +27930,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25158,7 +27968,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25173,7 +27983,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25188,7 +27998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25207,7 +28017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25222,7 +28032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25237,7 +28047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25253,7 +28063,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25269,7 +28079,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25284,7 +28094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25299,7 +28109,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25319,7 +28147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25334,7 +28162,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -25363,7 +28191,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25378,7 +28206,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25393,7 +28221,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25412,7 +28240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25427,7 +28255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25442,7 +28270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25458,7 +28286,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25474,7 +28302,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25489,7 +28317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25504,7 +28332,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25524,7 +28370,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -25553,7 +28399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25568,7 +28414,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25583,7 +28429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25602,7 +28448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25617,7 +28463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25632,7 +28478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25648,7 +28494,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25664,7 +28510,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25679,7 +28525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25694,7 +28540,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25721,7 +28585,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -25745,7 +28609,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25754,7 +28618,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25763,7 +28627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25772,7 +28636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25781,7 +28645,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -25804,7 +28668,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25813,7 +28677,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25826,7 +28690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25835,7 +28699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25844,7 +28708,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25853,7 +28717,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25863,7 +28727,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25873,7 +28737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25882,7 +28746,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25891,7 +28755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25900,7 +28764,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -25918,7 +28794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25933,7 +28809,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25948,7 +28824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25963,7 +28839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25978,7 +28854,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25993,7 +28869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26012,7 +28888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26027,7 +28903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26042,7 +28918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26057,7 +28933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26073,7 +28949,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26089,7 +28965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26104,7 +28980,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26119,7 +28995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26134,7 +29010,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26154,7 +29048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -26183,7 +29077,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26198,7 +29092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26217,7 +29111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26232,7 +29126,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26247,7 +29141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26262,7 +29156,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26278,7 +29172,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26294,7 +29188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26309,7 +29203,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26324,7 +29218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26339,7 +29233,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26359,7 +29271,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26374,7 +29286,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26393,7 +29305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26408,7 +29320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26423,7 +29335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26438,7 +29350,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26454,7 +29366,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26470,7 +29382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26485,7 +29397,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26500,7 +29412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26515,7 +29427,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26542,7 +29472,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -26562,7 +29492,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26571,7 +29501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26580,7 +29510,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26589,7 +29519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26598,7 +29528,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -26621,7 +29551,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26630,7 +29560,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26639,7 +29569,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26652,7 +29582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26661,7 +29591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26670,7 +29600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26679,7 +29609,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26689,7 +29619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26699,7 +29629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26708,7 +29638,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26717,7 +29647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26726,7 +29656,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -26744,7 +29686,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26759,7 +29701,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26774,7 +29716,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26789,7 +29731,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26804,7 +29746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26823,7 +29765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26838,7 +29780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26853,7 +29795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26868,7 +29810,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26884,7 +29826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26900,7 +29842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26915,7 +29857,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26930,7 +29872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26945,7 +29887,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26968,7 +29928,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26983,7 +29943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26998,7 +29958,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27013,7 +29973,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27028,7 +29988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27043,7 +30003,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27062,7 +30022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27077,7 +30037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27092,7 +30052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27107,7 +30067,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27123,7 +30083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27139,7 +30099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27154,7 +30114,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27169,7 +30129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27184,7 +30144,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27204,7 +30182,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -27233,7 +30211,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27248,7 +30226,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27267,7 +30245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27282,7 +30260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27297,7 +30275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27312,7 +30290,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27328,7 +30306,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27344,7 +30322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27359,7 +30337,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27374,7 +30352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27389,7 +30367,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27409,7 +30405,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -27438,7 +30434,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27457,7 +30453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27472,7 +30468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27487,7 +30483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27502,7 +30498,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27518,7 +30514,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27534,7 +30530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27549,7 +30545,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27564,7 +30560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27579,7 +30575,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27603,7 +30617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27618,7 +30632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27633,7 +30647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27648,7 +30662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27664,7 +30678,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27680,7 +30694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27695,7 +30709,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27710,7 +30724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27725,7 +30739,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27752,7 +30784,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -27806,7 +30838,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27815,7 +30847,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27824,7 +30856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27833,7 +30865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -27856,7 +30888,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27865,7 +30897,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27874,7 +30906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27883,7 +30915,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27895,7 +30927,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27904,7 +30936,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27913,7 +30945,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27922,7 +30954,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27931,7 +30963,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27940,7 +30972,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27953,7 +30985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27962,7 +30994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27971,7 +31003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27980,7 +31012,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27990,7 +31022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28000,7 +31032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28009,7 +31041,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28018,7 +31050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28027,7 +31059,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -28045,7 +31089,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28060,7 +31104,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28075,7 +31119,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28090,7 +31134,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28105,7 +31149,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28120,7 +31164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28135,7 +31179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28153,7 +31197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28168,7 +31212,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28183,7 +31227,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28198,7 +31242,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28213,7 +31257,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28228,7 +31272,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28247,7 +31291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28262,7 +31306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28277,7 +31321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28292,7 +31336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28308,7 +31352,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28324,7 +31368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28339,7 +31383,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28354,7 +31398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28369,7 +31413,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28389,7 +31451,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -28418,7 +31480,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28433,7 +31495,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28448,7 +31510,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28463,7 +31525,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28481,7 +31543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28496,7 +31558,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28511,7 +31573,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28526,7 +31588,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28541,7 +31603,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28556,7 +31618,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28575,7 +31637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28590,7 +31652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28605,7 +31667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28620,7 +31682,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28636,7 +31698,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28652,7 +31714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28667,7 +31729,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28682,7 +31744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28697,7 +31759,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28717,7 +31797,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28732,7 +31812,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28747,7 +31827,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28762,7 +31842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28780,7 +31860,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28795,7 +31875,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28810,7 +31890,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28825,7 +31905,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28840,7 +31920,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28855,7 +31935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28874,7 +31954,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28889,7 +31969,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28904,7 +31984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28919,7 +31999,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28935,7 +32015,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28951,7 +32031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28966,7 +32046,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28981,7 +32061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28996,7 +32076,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29023,7 +32121,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230.IAdvancedThreatProtection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230.IAdvancedThreatProtection, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20231230.IAdvancedThreatProtection, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState]", "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState]", @@ -29041,7 +32139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29050,7 +32148,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29059,7 +32157,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29068,7 +32166,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -29091,7 +32189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29104,7 +32202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29113,7 +32211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29122,7 +32220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29131,7 +32229,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29141,7 +32239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29151,7 +32249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29160,7 +32258,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29169,7 +32267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29178,7 +32276,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -29193,7 +32303,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29208,7 +32318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29223,7 +32333,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29238,7 +32348,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29257,7 +32367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29272,7 +32382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29287,7 +32397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29302,7 +32412,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29318,7 +32428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29334,7 +32444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29349,7 +32459,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29364,7 +32474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29379,7 +32489,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29399,7 +32527,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -29428,7 +32556,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29447,7 +32575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29462,7 +32590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29477,7 +32605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29492,7 +32620,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29508,7 +32636,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29524,7 +32652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29539,7 +32667,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29554,7 +32682,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29569,7 +32697,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29589,7 +32735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29608,7 +32754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29623,7 +32769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29638,7 +32784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29653,7 +32799,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29669,7 +32815,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29685,7 +32831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29700,7 +32846,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29715,7 +32861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29730,7 +32876,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29757,7 +32921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IConfigurationAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IConfigurationAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IConfigurationAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Source": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -29790,7 +32954,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29799,7 +32963,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29808,7 +32972,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29817,7 +32981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29826,7 +32990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -29849,7 +33013,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29858,7 +33022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29871,7 +33035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29880,7 +33044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29889,7 +33053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29898,7 +33062,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29908,7 +33072,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29918,7 +33082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29927,7 +33091,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29936,7 +33100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29945,7 +33109,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -29963,7 +33139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29978,7 +33154,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29993,7 +33169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30008,7 +33184,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30023,7 +33199,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30038,7 +33214,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30057,7 +33233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30072,7 +33248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30087,7 +33263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30102,7 +33278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30118,7 +33294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30134,7 +33310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30149,7 +33325,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30164,7 +33340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30179,7 +33355,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30199,7 +33393,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -30228,7 +33422,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30243,7 +33437,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30262,7 +33456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30277,7 +33471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30292,7 +33486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30307,7 +33501,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30323,7 +33517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30339,7 +33533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30354,7 +33548,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30369,7 +33563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30384,7 +33578,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30404,7 +33616,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30419,7 +33631,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30438,7 +33650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30453,7 +33665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30468,7 +33680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30483,7 +33695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30499,7 +33711,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30515,7 +33727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30530,7 +33742,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30545,7 +33757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30560,7 +33772,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30587,7 +33817,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IFirewallRuleAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IFirewallRuleAutoGenerated, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IFirewallRuleAutoGenerated, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", @@ -30613,7 +33843,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30622,7 +33852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30631,7 +33861,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30640,7 +33870,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30649,7 +33879,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -30672,7 +33902,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30681,7 +33911,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30690,7 +33920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30703,7 +33933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30712,7 +33942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30721,7 +33951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30730,7 +33960,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30740,7 +33970,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30750,7 +33980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30759,7 +33989,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30768,7 +33998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30777,7 +34007,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -30795,7 +34037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30810,7 +34052,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30825,7 +34067,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30840,7 +34082,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30855,7 +34097,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30874,7 +34116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30889,7 +34131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30904,7 +34146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30919,7 +34161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30935,7 +34177,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30951,7 +34193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30966,7 +34208,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30981,7 +34223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30996,7 +34238,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31019,7 +34279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31034,7 +34294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31049,7 +34309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31064,7 +34324,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31079,7 +34339,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31094,7 +34354,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31113,7 +34373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31128,7 +34388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31143,7 +34403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31158,7 +34418,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31174,7 +34434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31190,7 +34450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31205,7 +34465,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31220,7 +34480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31235,7 +34495,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31255,7 +34533,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -31284,7 +34562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31299,7 +34577,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31318,7 +34596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31333,7 +34611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31348,7 +34626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31363,7 +34641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31379,7 +34657,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31395,7 +34673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31410,7 +34688,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31425,7 +34703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31440,7 +34718,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31460,7 +34756,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -31489,7 +34785,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31508,7 +34804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31523,7 +34819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31538,7 +34834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31553,7 +34849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31569,7 +34865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31585,7 +34881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31600,7 +34896,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31615,7 +34911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31630,7 +34926,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31654,7 +34968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31669,7 +34983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31684,7 +34998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31699,7 +35013,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31715,7 +35029,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31731,7 +35045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31746,7 +35060,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31761,7 +35075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31776,7 +35090,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31803,7 +35135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", @@ -31847,7 +35179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31856,7 +35188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31865,7 +35197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31874,7 +35206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -31897,7 +35229,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31906,7 +35238,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31915,7 +35247,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31924,7 +35256,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31933,7 +35265,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31942,7 +35274,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31951,7 +35283,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31960,7 +35292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31969,7 +35301,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31978,7 +35310,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31987,7 +35319,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31996,7 +35328,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32005,7 +35337,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32018,7 +35350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32027,7 +35359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32036,7 +35368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32045,7 +35377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32055,7 +35387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32065,7 +35397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32074,7 +35406,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32083,7 +35415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32092,7 +35424,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -32110,7 +35454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32125,7 +35469,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32140,7 +35484,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32155,7 +35499,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32170,7 +35514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32185,7 +35529,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32200,7 +35544,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32215,7 +35559,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32230,7 +35574,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32245,7 +35589,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32260,7 +35604,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32275,7 +35619,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32290,7 +35634,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32305,7 +35649,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32320,7 +35664,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32335,7 +35679,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32354,7 +35698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32369,7 +35713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32384,7 +35728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32399,7 +35743,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32415,7 +35759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32431,7 +35775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32446,7 +35790,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32461,7 +35805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32476,7 +35820,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32496,7 +35858,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -32525,7 +35887,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32540,7 +35902,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32555,7 +35917,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32570,7 +35932,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32585,7 +35947,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32600,7 +35962,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32615,7 +35977,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32630,7 +35992,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32645,7 +36007,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32660,7 +36022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32675,7 +36037,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32690,7 +36052,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32705,7 +36067,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32724,7 +36086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32739,7 +36101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32754,7 +36116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32769,7 +36131,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32785,7 +36147,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32801,7 +36163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32816,7 +36178,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32831,7 +36193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32846,7 +36208,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32866,7 +36246,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32881,7 +36261,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32896,7 +36276,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32911,7 +36291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32926,7 +36306,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32941,7 +36321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32956,7 +36336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32971,7 +36351,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32986,7 +36366,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33001,7 +36381,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33016,7 +36396,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33031,7 +36411,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33046,7 +36426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33065,7 +36445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33080,7 +36460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33095,7 +36475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33110,7 +36490,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33126,7 +36506,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33142,7 +36522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33157,7 +36537,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33172,7 +36552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33187,7 +36567,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33214,7 +36612,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -33235,7 +36633,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33244,7 +36642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33253,7 +36651,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33262,7 +36660,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -33285,7 +36683,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration" }, "ValidateNotNullOrEmpty": false @@ -33299,7 +36697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33308,7 +36706,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33317,7 +36715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33326,7 +36724,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33336,7 +36734,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33346,7 +36744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33355,7 +36753,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33364,7 +36762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33373,7 +36771,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -33388,7 +36798,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33403,7 +36813,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33418,7 +36828,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33433,7 +36843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration" }, "ValidateNotNullOrEmpty": false @@ -33453,7 +36863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33468,7 +36878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33483,7 +36893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33498,7 +36908,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33514,7 +36924,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33530,7 +36940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33545,7 +36955,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33560,7 +36970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33575,7 +36985,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33595,7 +37023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -33624,7 +37052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration" }, "ValidateNotNullOrEmpty": false @@ -33644,7 +37072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33659,7 +37087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33674,7 +37102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33689,7 +37117,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33705,7 +37133,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33721,7 +37149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33736,7 +37164,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33751,7 +37179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33766,7 +37194,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33786,7 +37232,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration" }, "ValidateNotNullOrEmpty": false @@ -33806,7 +37252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33821,7 +37267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33836,7 +37282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33851,7 +37297,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33867,7 +37313,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33883,7 +37329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33898,7 +37344,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33913,7 +37359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33928,7 +37374,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33955,7 +37419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -33976,7 +37440,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33985,7 +37449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33994,7 +37458,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34003,7 +37467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34012,7 +37476,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -34035,7 +37499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34044,7 +37508,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34057,7 +37521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34066,7 +37530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34075,7 +37539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34084,7 +37548,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34094,7 +37558,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34104,7 +37568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34113,7 +37577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34122,7 +37586,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34131,7 +37595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34140,7 +37604,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -34158,7 +37634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34173,7 +37649,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34188,7 +37664,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34203,7 +37679,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34218,7 +37694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34233,7 +37709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34252,7 +37728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34267,7 +37743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34282,7 +37758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34297,7 +37773,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34313,7 +37789,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34329,7 +37805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34344,7 +37820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34359,7 +37835,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34374,7 +37850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34389,7 +37865,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34409,7 +37903,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvancedThreatProtectionName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", @@ -34438,7 +37932,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34453,7 +37947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34472,7 +37966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34487,7 +37981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34502,7 +37996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34517,7 +38011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34533,7 +38027,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34549,7 +38043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34564,7 +38058,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34579,7 +38073,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34594,7 +38088,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34609,7 +38103,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34629,7 +38141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34644,7 +38156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34663,7 +38175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34678,7 +38190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34693,7 +38205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34708,7 +38220,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34724,7 +38236,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34740,7 +38252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34755,7 +38267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34770,7 +38282,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34785,7 +38297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34800,7 +38312,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34860,7 +38390,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName" ] @@ -34868,7 +38398,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionName, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -34933,7 +38463,7 @@ "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Management.Automation.CompletionResult" ] @@ -34941,17 +38471,17 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName" ] @@ -34959,7 +38489,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SecurityAlertPolicyName, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35024,7 +38554,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -35158,17 +38688,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -35176,39 +38706,39 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection" }, "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPrivateEndpointConnection, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState]", "PrivateLinkServiceConnectionStateActionsRequired": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire]", @@ -35221,7 +38751,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState" ] @@ -35229,7 +38759,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateEndpointProvisioningState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35294,7 +38824,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire" ] @@ -35302,7 +38832,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35367,7 +38897,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus" ] @@ -35375,7 +38905,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PrivateLinkServiceConnectionStateStatus, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35440,7 +38970,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup" ] @@ -35448,7 +38978,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.GeoRedundantBackup, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35513,7 +39043,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType" ] @@ -35521,7 +39051,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IdentityType, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35586,7 +39116,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption" ] @@ -35594,7 +39124,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35659,7 +39189,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum" ] @@ -35667,7 +39197,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.MinimalTlsVersionEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35732,7 +39262,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum" ] @@ -35740,7 +39270,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.PublicNetworkAccessEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35805,7 +39335,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState" ] @@ -35813,7 +39343,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35878,7 +39408,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion" ] @@ -35886,7 +39416,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ServerVersion, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -35951,7 +39481,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier" ] @@ -35959,7 +39489,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36024,7 +39554,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum" ] @@ -36032,7 +39562,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36097,7 +39627,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow" ] @@ -36105,7 +39635,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36170,7 +39700,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -36178,12 +39708,12 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -36191,7 +39721,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType" ] @@ -36199,7 +39729,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreatedByType, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36264,7 +39794,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode" ] @@ -36272,7 +39802,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36337,7 +39867,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum" ] @@ -36345,7 +39875,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.EnableStatusEnum, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36410,7 +39940,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode" ] @@ -36418,7 +39948,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityMode, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36483,7 +40013,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState" ] @@ -36491,7 +40021,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HighAvailabilityState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36556,7 +40086,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole" ] @@ -36564,7 +40094,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ReplicationRole, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36629,12 +40159,12 @@ "System.Security.SecureString": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState" ] @@ -36642,7 +40172,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionProvisioningState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36707,7 +40237,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState" ] @@ -36715,7 +40245,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.AdvancedThreatProtectionState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36780,7 +40310,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource" ] @@ -36788,7 +40318,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.ConfigurationSource, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36853,7 +40383,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart" ] @@ -36861,7 +40391,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsConfigPendingRestart, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36926,7 +40456,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig" ] @@ -36934,7 +40464,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsDynamicConfig, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -36999,7 +40529,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly" ] @@ -37007,7 +40537,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.IsReadOnly, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -37072,13 +40602,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerEditionCapability, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedServerVersion": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability[]", "SupportedStorageEdition": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability[]", @@ -37088,13 +40618,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IServerVersionCapability, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedSku": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability[]", "Name": "System.String" @@ -37103,13 +40633,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.ISkuCapability, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedIop": "System.Nullable`1[System.Int64]", "SupportedMemoryPerVCoreMb": "System.Nullable`1[System.Int64]", @@ -37120,7 +40650,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -37128,13 +40658,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability[], Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability[], Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20210501.IStorageEditionCapability, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaxBackupRetentionDay": "System.Nullable`1[System.Int64]", "MaxStorageSize": "System.Nullable`1[System.Int64]", @@ -37146,13 +40676,13 @@ "System.String[]": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState" ] @@ -37160,7 +40690,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.VirtualNetworkRuleState, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -37225,7 +40755,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -37233,7 +40763,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration, Az.MySql.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.NetAppFiles.json b/tools/Tools.Common/SerializedCmdlets/Az.NetAppFiles.json index 1a6fa4f8d421..4167c329bdfa 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.23.0", + "ModuleVersion": "0.24.0", "Cmdlets": [ { "VerbName": "Approve", @@ -86,7 +86,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -430,7 +430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -650,7 +650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -766,7 +766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -1220,7 +1220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -1371,7 +1371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -1703,7 +1703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -1792,7 +1792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -2035,7 +2035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -2156,7 +2156,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -2255,7 +2255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -2483,7 +2483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -2589,7 +2589,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -2705,7 +2705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -2986,7 +2986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -3183,7 +3183,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -3282,7 +3282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -3461,7 +3461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -3665,7 +3665,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -3763,7 +3763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -3992,7 +3992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -4246,7 +4246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailabilityZoneMappings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.RegionInfoAvailabilityZoneMappingsItem]", "StorageToNetworkProximity": "System.String" @@ -4576,7 +4576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailabilityZoneMappings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.RegionInfoAvailabilityZoneMappingsItem]", "StorageToNetworkProximity": "System.String" @@ -4894,7 +4894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailabilityZoneMappings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.RegionInfoAvailabilityZoneMappingsItem]", "StorageToNetworkProximity": "System.String" @@ -5185,7 +5185,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -5285,7 +5285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -5464,7 +5464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -5668,7 +5668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailabilityZoneMappings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.RegionInfoAvailabilityZoneMappingsItem]", "StorageToNetworkProximity": "System.String" @@ -6025,7 +6025,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSubscriptionQuotaLimit, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Current": "System.Nullable`1[System.Int32]", "Default": "System.Nullable`1[System.Int32]", @@ -6290,7 +6290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailabilityZoneMappings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.RegionInfoAvailabilityZoneMappingsItem]", "StorageToNetworkProximity": "System.String" @@ -6506,7 +6506,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Healthy": "System.Nullable`1[System.Boolean]", "RelationshipStatus": "System.String", @@ -6603,7 +6603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -6893,7 +6893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -7083,7 +7083,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -7192,7 +7192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -7451,7 +7451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -7705,7 +7705,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -7803,7 +7803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -7982,7 +7982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -8186,7 +8186,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -8284,7 +8284,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -8463,7 +8463,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -8667,7 +8667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -8833,7 +8833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -9159,7 +9159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -9379,7 +9379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -9545,7 +9545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -9935,7 +9935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -10094,7 +10094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRegionInfo, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailabilityZoneMappings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.RegionInfoAvailabilityZoneMappingsItem]", "StorageToNetworkProximity": "System.String" @@ -10349,7 +10349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -10506,7 +10506,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -10702,7 +10702,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -10908,7 +10908,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Healthy": "System.Nullable`1[System.Boolean]", "LastTransferSize": "System.Nullable`1[System.Int64]", @@ -11008,7 +11008,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -11036,7 +11036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -11280,7 +11280,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -11427,7 +11427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -11617,7 +11617,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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.PSNetAppFilesVolume]", @@ -11708,7 +11708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -11954,7 +11954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -12127,7 +12127,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Healthy": "System.Nullable`1[System.Boolean]", "LastTransferSize": "System.Nullable`1[System.Int64]", @@ -12236,7 +12236,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -12264,7 +12264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -12523,7 +12523,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -12670,7 +12670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -12860,7 +12860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -13026,7 +13026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -13285,7 +13285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -13539,7 +13539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -13696,7 +13696,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -13938,7 +13938,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -14080,7 +14080,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Healthy": "System.Nullable`1[System.Boolean]", "TotalTransferBytes": "System.Nullable`1[System.Int64]", @@ -14178,7 +14178,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -14206,7 +14206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -14450,7 +14450,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -14597,7 +14597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -14848,7 +14848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -15177,7 +15177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -15397,7 +15397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -15513,7 +15513,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint" ] @@ -15534,7 +15534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -15764,7 +15764,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint" ] @@ -16021,7 +16021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -16175,7 +16175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -16264,7 +16264,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -16274,7 +16274,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -16578,7 +16578,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -16594,7 +16594,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -16714,7 +16714,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -16730,7 +16730,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -16827,7 +16827,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -17080,7 +17080,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -17104,7 +17104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -17472,7 +17472,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -17831,7 +17831,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -17916,7 +17916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -18222,7 +18222,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -18314,7 +18314,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -18448,7 +18448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -18804,7 +18804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -18966,7 +18966,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -19122,7 +19122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -19539,7 +19539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -19735,7 +19735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -19838,7 +19838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -20117,7 +20117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -20244,7 +20244,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -20289,7 +20289,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule" }, "ValidateNotNullOrEmpty": true @@ -20337,7 +20337,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule" }, "ValidateNotNullOrEmpty": true @@ -20458,7 +20458,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UnixReadOnly": "System.Nullable`1[System.Boolean]", "UnixReadWrite": "System.Nullable`1[System.Boolean]", @@ -21020,7 +21020,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -21177,7 +21177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -21606,7 +21606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -21808,7 +21808,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -21938,7 +21938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -22312,7 +22312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -22489,7 +22489,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -22596,7 +22596,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -22610,7 +22610,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -22625,7 +22625,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -22641,7 +22641,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -22669,7 +22669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -22811,7 +22811,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -22831,7 +22831,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -22852,7 +22852,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -22874,7 +22874,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -22996,7 +22996,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -23016,7 +23016,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -23037,7 +23037,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -23059,7 +23059,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -23148,7 +23148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -23213,7 +23213,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -23233,7 +23233,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -23254,7 +23254,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -23276,7 +23276,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -23375,7 +23375,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -23521,7 +23521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -23940,7 +23940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -24147,7 +24147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -24358,7 +24358,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -24370,7 +24370,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemotePath": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath", "DestinationReplications": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]", @@ -24388,7 +24388,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" } @@ -24409,7 +24409,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -24639,7 +24639,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs" ] @@ -24736,7 +24736,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -24985,7 +24985,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -25003,7 +25003,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemotePath": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath", "DestinationReplications": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]", @@ -25027,7 +25027,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" } @@ -25060,7 +25060,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -25413,7 +25413,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs" ] @@ -25652,7 +25652,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -25731,7 +25731,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -25749,7 +25749,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemotePath": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath", "DestinationReplications": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]", @@ -25773,7 +25773,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" } @@ -25806,7 +25806,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -26159,7 +26159,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs" ] @@ -26410,7 +26410,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -26428,7 +26428,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemotePath": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath", "DestinationReplications": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]", @@ -26452,7 +26452,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" } @@ -26485,7 +26485,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -26838,7 +26838,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs" ] @@ -27054,7 +27054,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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.PSNetAppFilesVolume]", @@ -27176,6 +27176,15 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "SystemId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ProximityPlacementGroup", "Type": { @@ -27269,6 +27278,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "DataReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DataPerformance", "Type": { @@ -27305,6 +27332,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "LogReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LogReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "SharedSize", "Type": { @@ -27329,6 +27374,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "SharedReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SharedReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DataBackupSize", "Type": { @@ -27353,6 +27416,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "DataBackupReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataBackupReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "LogBackupSize", "Type": { @@ -27377,6 +27458,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "LogBackupReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LogBackupReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "HannaSystemReplication", "Type": { @@ -27410,7 +27509,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -27466,6 +27565,464 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "OracleDatabaseSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NumberOfDataVolume", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 2, + "ValidateRangeMax": 8, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OracleDatabaseThroughput", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DataSize2", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data2Performance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data2ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data2ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataSize3", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data3Performance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data3ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data3ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data4Size", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data4Performance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data4ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data4ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data5Size", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data5Performance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data5ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data5ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data6Size", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data6Performance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data6ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data6ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data7Size", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data7Performance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data7ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data7ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DataSize8", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DataPerformance8", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Data8ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Data8ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BinarySize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BinaryPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BinaryReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BinaryReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackupSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackupPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackupReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackupReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LogMirrorSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LogMirrorPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LogMirrorReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LogMirrorReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Tag", "AliasList": [ @@ -27483,7 +28040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -27521,29 +28078,1310 @@ "Environments": "System.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 + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByFieldsParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "VolumeGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GroupDescription", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SystemId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProximityPlacementGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NodeMemory", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CapacityOverhead", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StartingHostId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostCount", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SystemRole", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Prefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Vnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubnetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataBackupSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataBackupPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogBackupSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogBackupPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HannaSystemReplication", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisasterRecoveryDestination", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackupProtocolType", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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.23.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": "GlobalPlacementRule", + "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.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptionKeySource", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkFeature", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.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 + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PoolName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "VolumeGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GroupDescription", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationIdentifier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SystemId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProximityPlacementGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NodeMemory", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CapacityOverhead", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StartingHostId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostCount", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SystemRole", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Prefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Vnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubnetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataBackupSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataBackupPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogBackupSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogBackupPerformance", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HannaSystemReplication", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisasterRecoveryDestination", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackupProtocolType", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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.23.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": "GlobalPlacementRule", + "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.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptionKeySource", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkFeature", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.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 + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] }, { - "Name": "ProgressAction", - "AliasList": [ - "proga" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.ActionPreference", - "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByFieldsParameterSet", + "Name": "ORACLE", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DataReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -27551,14 +29389,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DataReplicationSchedule", "Type": { "Namespace": "System", "Name": "System.String", @@ -27566,14 +29404,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AccountName", + "Name": "LogReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -27581,32 +29419,29 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PoolName", + "Name": "LogReplicationSchedule", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "VolumeGroupName" - ], + "Name": "SharedReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -27621,7 +29456,7 @@ }, { "ParameterMetadata": { - "Name": "GroupDescription", + "Name": "SharedReplicationSchedule", "Type": { "Namespace": "System", "Name": "System.String", @@ -27636,7 +29471,7 @@ }, { "ParameterMetadata": { - "Name": "ApplicationType", + "Name": "DataBackupReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -27651,7 +29486,7 @@ }, { "ParameterMetadata": { - "Name": "ApplicationIdentifier", + "Name": "DataBackupReplicationSchedule", "Type": { "Namespace": "System", "Name": "System.String", @@ -27659,20 +29494,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProximityPlacementGroup", + "Name": "LogBackupReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -27681,28 +29516,31 @@ }, { "ParameterMetadata": { - "Name": "NodeMemory", + "Name": "LogBackupReplicationSchedule", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CapacityOverhead", + "Name": "OracleDatabaseSize", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -27711,13 +29549,18 @@ }, { "ParameterMetadata": { - "Name": "StartingHostId", + "Name": "NumberOfDataVolume", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 2, + "ValidateRangeMax": 8, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -27726,11 +29569,14 @@ }, { "ParameterMetadata": { - "Name": "HostCount", + "Name": "OracleDatabaseThroughput", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -27741,11 +29587,14 @@ }, { "ParameterMetadata": { - "Name": "SystemRole", + "Name": "DataSize2", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] }, "ValidateNotNullOrEmpty": false }, @@ -27756,13 +29605,16 @@ }, { "ParameterMetadata": { - "Name": "Prefix", + "Name": "Data2Performance", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -27771,13 +29623,13 @@ }, { "ParameterMetadata": { - "Name": "Vnet", + "Name": "Data2ReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -27786,13 +29638,13 @@ }, { "ParameterMetadata": { - "Name": "SubnetId", + "Name": "Data2ReplicationSchedule", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -27801,7 +29653,7 @@ }, { "ParameterMetadata": { - "Name": "DataSize", + "Name": "DataSize3", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", @@ -27819,7 +29671,7 @@ }, { "ParameterMetadata": { - "Name": "DataPerformance", + "Name": "Data3Performance", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -27837,7 +29689,37 @@ }, { "ParameterMetadata": { - "Name": "LogSize", + "Name": "Data3ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data3ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data4Size", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", @@ -27855,7 +29737,7 @@ }, { "ParameterMetadata": { - "Name": "LogPerformance", + "Name": "Data4Performance", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -27873,7 +29755,37 @@ }, { "ParameterMetadata": { - "Name": "SharedSize", + "Name": "Data4ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data4ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data5Size", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", @@ -27891,7 +29803,7 @@ }, { "ParameterMetadata": { - "Name": "SharedPerformance", + "Name": "Data5Performance", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -27909,7 +29821,37 @@ }, { "ParameterMetadata": { - "Name": "DataBackupSize", + "Name": "Data5ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data5ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data6Size", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", @@ -27927,7 +29869,7 @@ }, { "ParameterMetadata": { - "Name": "DataBackupPerformance", + "Name": "Data6Performance", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -27945,7 +29887,37 @@ }, { "ParameterMetadata": { - "Name": "LogBackupSize", + "Name": "Data6ReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data6ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data7Size", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", @@ -27963,7 +29935,7 @@ }, { "ParameterMetadata": { - "Name": "LogBackupPerformance", + "Name": "Data7Performance", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -27981,11 +29953,44 @@ }, { "ParameterMetadata": { - "Name": "HannaSystemReplication", + "Name": "Data7ReplicationSourceId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Data7ReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataSize8", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] }, "ValidateNotNullOrEmpty": false }, @@ -27996,11 +30001,14 @@ }, { "ParameterMetadata": { - "Name": "DisasterRecoveryDestination", + "Name": "DataPerformance8", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -28011,12 +30019,11 @@ }, { "ParameterMetadata": { - "Name": "BackupProtocolType", + "Name": "Data8ReplicationSourceId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -28027,14 +30034,11 @@ }, { "ParameterMetadata": { - "Name": "ExportPolicy", + "Name": "Data8ReplicationSchedule", "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.22.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -28045,16 +30049,16 @@ }, { "ParameterMetadata": { - "Name": "GlobalPlacementRule", + "Name": "BinarySize", "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.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs" + "System.Int64" ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -28063,11 +30067,14 @@ }, { "ParameterMetadata": { - "Name": "EncryptionKeySource", + "Name": "BinaryPerformance", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -28078,13 +30085,13 @@ }, { "ParameterMetadata": { - "Name": "NetworkFeature", + "Name": "BinaryReplicationSourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -28093,12 +30100,30 @@ }, { "ParameterMetadata": { - "Name": "KeyVaultPrivateEndpointResourceId", + "Name": "BinaryReplicationSchedule", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackupSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -28108,12 +30133,14 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "BackupPerformance", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -28124,14 +30151,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "AliasList": [ - "Tags" - ], + "Name": "BackupReplicationSourceId", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -28142,22 +30166,29 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "BackupReplicationSchedule", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogMirrorSize", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int64" + ] }, "ValidateNotNullOrEmpty": false }, @@ -28168,14 +30199,14 @@ }, { "ParameterMetadata": { - "Name": "ProgressAction", - "AliasList": [ - "proga" - ], + "Name": "LogMirrorPerformance", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.ActionPreference", - "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -28183,12 +30214,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, + { + "ParameterMetadata": { + "Name": "LogMirrorReplicationSourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LogMirrorReplicationSchedule", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "PoolName", @@ -28267,6 +30323,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SystemId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ProximityPlacementGroup", @@ -28634,7 +30705,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -28798,7 +30869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -28902,6 +30973,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SystemId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ProximityPlacementGroup", @@ -29269,7 +31355,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -29443,7 +31529,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -29598,7 +31684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -30047,7 +32133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -30312,7 +32398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -30561,7 +32647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -30731,7 +32817,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -30827,7 +32913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -30853,7 +32939,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -31060,7 +33146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -31156,7 +33242,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -31336,7 +33422,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -31443,7 +33529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -31462,7 +33548,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -31774,7 +33860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -31942,7 +34028,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -32112,7 +34198,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -32202,7 +34288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -32237,7 +34323,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -32441,7 +34527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -32616,7 +34702,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -32830,7 +34916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -32865,7 +34951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -33061,7 +35147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -33236,7 +35322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -33451,7 +35537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -33477,7 +35563,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -33682,7 +35768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -33857,7 +35943,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -34090,7 +36176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -34419,7 +36505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -34709,7 +36795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -34785,7 +36871,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -35072,7 +37158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -35218,7 +37304,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -35381,7 +37467,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -35479,7 +37565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -35505,7 +37591,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -35708,7 +37794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -35883,7 +37969,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -36053,7 +38139,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -36170,7 +38256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -36246,7 +38332,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -36640,7 +38726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -36804,7 +38890,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -36998,7 +39084,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -37026,7 +39112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -37309,7 +39395,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -37595,7 +39681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -37818,7 +39904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -37844,7 +39930,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -38209,7 +40295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -38323,7 +40409,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -38518,7 +40604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -38594,7 +40680,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -38989,7 +41075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -39153,7 +41239,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -39339,7 +41425,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -39367,7 +41453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -39635,7 +41721,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -39812,7 +41898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -40032,7 +42118,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -40167,7 +42253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -40186,7 +42272,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -40450,7 +42536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -40820,7 +42906,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -41042,7 +43128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -41480,7 +43566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -41651,7 +43737,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Created": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -41779,7 +43865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -42316,7 +44402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -42588,7 +44674,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -42616,7 +44702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -42899,7 +44985,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -43076,7 +45162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -43357,7 +45443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -43686,7 +45772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -43906,7 +45992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -43995,7 +46081,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -44303,7 +46389,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -44544,7 +46630,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -44700,7 +46786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -45126,7 +47212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -45491,7 +47577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -45585,7 +47671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -45849,7 +47935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -45976,7 +48062,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -46124,7 +48210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -46532,7 +48618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -46879,7 +48965,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -46986,7 +49072,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -47000,7 +49086,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47015,7 +49101,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47031,7 +49117,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47059,7 +49145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -47210,7 +49296,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -47230,7 +49316,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47251,7 +49337,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47273,7 +49359,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47395,7 +49481,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -47415,7 +49501,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47436,7 +49522,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47458,7 +49544,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47547,7 +49633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -47612,7 +49698,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -47632,7 +49718,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47653,7 +49739,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47675,7 +49761,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47812,7 +49898,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -47832,7 +49918,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47853,7 +49939,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -47875,7 +49961,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -48044,7 +50130,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -48072,7 +50158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -48331,7 +50417,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -48478,7 +50564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -48729,7 +50815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -49058,7 +51144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -49339,7 +51425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -49668,7 +51754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -49959,7 +52045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -50304,7 +52390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -50585,7 +52671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -50914,7 +53000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -51204,7 +53290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -51548,7 +53634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -51838,7 +53924,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -51866,7 +53952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -52149,7 +54235,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -52435,7 +54521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -52606,7 +54692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -52704,7 +54790,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -52714,7 +54800,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -52800,7 +54886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -52924,7 +55010,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -52940,7 +55026,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -53090,7 +55176,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -53106,7 +55192,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -53361,7 +55447,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -53377,7 +55463,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -53464,7 +55550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -53544,7 +55630,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" }, "ValidateNotNullOrEmpty": true @@ -53560,7 +55646,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -53657,7 +55743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -53755,7 +55841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -54067,7 +56153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -54221,7 +56307,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -54483,7 +56569,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -54507,7 +56593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -54533,7 +56619,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -54926,7 +57012,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -55026,7 +57112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -55332,7 +57418,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -55691,7 +57777,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -55776,7 +57862,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -56092,7 +58178,7 @@ "Type": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -56187,7 +58273,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -56324,7 +58410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -56343,7 +58429,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -56585,7 +58671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -56871,7 +58957,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -56995,7 +59081,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -57151,7 +59237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -57177,7 +59263,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -57444,7 +59530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -57854,7 +59940,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -58018,7 +60104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -58121,7 +60207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -58147,7 +60233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -58337,7 +60423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -58585,7 +60671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupVault, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "Tags": "System.Object", @@ -58687,7 +60773,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -59074,7 +61160,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -59225,7 +61311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -59251,7 +61337,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -59513,7 +61599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -59905,7 +61991,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -60064,7 +62150,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -60174,7 +62260,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -60188,7 +62274,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60203,7 +62289,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60219,7 +62305,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60256,7 +62342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -60282,7 +62368,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -60427,7 +62513,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -60447,7 +62533,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60468,7 +62554,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60490,7 +62576,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60597,7 +62683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption", @@ -60647,7 +62733,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -60667,7 +62753,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60688,7 +62774,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60710,7 +62796,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60817,7 +62903,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -60837,7 +62923,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60858,7 +62944,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -60880,7 +62966,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61002,7 +63088,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -61022,7 +63108,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61043,7 +63129,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61065,7 +63151,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61154,7 +63240,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule", "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule", @@ -61204,7 +63290,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -61224,7 +63310,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61245,7 +63331,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61267,7 +63353,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -61366,7 +63452,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -61504,7 +63590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -61580,7 +63666,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -62019,7 +64105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -62201,7 +64287,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -62343,7 +64429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -62521,7 +64607,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -62533,7 +64619,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -62709,7 +64795,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -62737,7 +64823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -62962,7 +65048,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -62980,7 +65066,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -63310,7 +65396,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData", "CoolAccess": "System.Nullable`1[System.Boolean]", @@ -63377,7 +65463,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -63395,7 +65481,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -63740,7 +65826,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -63758,7 +65844,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -64118,7 +66204,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -64136,7 +66222,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -64448,7 +66534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -64563,7 +66649,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" } @@ -64581,7 +66667,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -64903,7 +66989,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -65058,7 +67144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -65134,7 +67220,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -65663,7 +67749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -65875,7 +67961,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseExistingSnapshot": "System.Nullable`1[System.Boolean]", "IsLargeVolume": "System.Nullable`1[System.Boolean]", @@ -66080,7 +68166,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Replication": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject", "Backup": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties", @@ -66121,7 +68207,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemotePath": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath", "DestinationReplications": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]", @@ -66164,7 +68250,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSRemotePath, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExternalHostName": "System.String", "ServerName": "System.String", @@ -66208,7 +68294,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication" ] @@ -66216,7 +68302,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Models.PSNetAppFilesDestinationReplication, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceId": "System.String", "ReplicationType": "System.String", @@ -66256,7 +68342,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnforced": "System.Nullable`1[System.Boolean]", "BackupEnabled": "System.Nullable`1[System.Boolean]", @@ -66305,7 +68391,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRelocationProperties": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRelocationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRelocationProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRelocationProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RelocationRequested": "System.Nullable`1[System.Boolean]", "ReadyToBeFinalized": "System.Nullable`1[System.Boolean]" @@ -66343,7 +68429,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotPolicyId": "System.String" }, @@ -66380,7 +68466,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]" }, @@ -66417,13 +68503,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UnixReadOnly": "System.Nullable`1[System.Boolean]", "UnixReadWrite": "System.Nullable`1[System.Boolean]", @@ -66482,7 +68568,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreatedAt": "System.Nullable`1[System.DateTime]", "LastModifiedAt": "System.Nullable`1[System.DateTime]", @@ -66537,7 +68623,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs" ] @@ -66545,7 +68631,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Key": "System.String", "Value": "System.String" @@ -66742,7 +68828,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity]", "TenantId": "System.Nullable`1[System.Guid]", @@ -66782,7 +68868,7 @@ "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity" @@ -66791,7 +68877,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -66842,7 +68928,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity", "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties", @@ -66881,7 +68967,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.String", "UserAssignedIdentity": "System.String", @@ -66920,7 +69006,7 @@ "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyVaultId": "System.String", "KeyVaultUri": "System.String", @@ -66961,7 +69047,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory" ] @@ -66969,7 +69055,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt", "BackupOperators": "System.Collections.Generic.IList`1[System.String]", @@ -67030,7 +69116,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserDN": "System.String", "GroupDN": "System.String", @@ -67077,7 +69163,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.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.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup" ] @@ -67085,7 +69171,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PolicyEnabled": "System.Nullable`1[System.Boolean]", "BackupsCount": "System.Nullable`1[System.Int32]", @@ -67184,7 +69270,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -67224,7 +69310,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Minute": "System.Nullable`1[System.Int32]", @@ -67263,7 +69349,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -67304,7 +69390,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SnapshotsToKeep": "System.Nullable`1[System.Int32]", "Hour": "System.Nullable`1[System.Int32]", @@ -67345,7 +69431,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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.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]", @@ -67450,7 +69536,7 @@ "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.PSNetAppFilesVolume]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume" ] @@ -67458,7 +69544,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume": { "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.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection", "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy", @@ -67559,7 +69645,7 @@ "Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint": { "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models", "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.22.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSANFKeyVaultPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.23.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualNetworkId": "System.String", "PrivateEndpointId": "System.String" diff --git a/tools/Tools.Common/SerializedCmdlets/Az.NetworkFunction.json b/tools/Tools.Common/SerializedCmdlets/Az.NetworkFunction.json index ff28c4144eec..d51652d6ce4e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.NetworkFunction.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.NetworkFunction.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.NetworkFunction", - "ModuleVersion": "0.1.5", + "ModuleVersion": "0.2.0", "Cmdlets": [ { "VerbName": "Get", @@ -14,15 +14,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EmissionPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "IngestionPolicyIngestionSource": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "IngestionPolicyIngestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String" + "EmissionPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]", + "IngestionPolicyIngestionSource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]", + "Etag": "System.String", + "IngestionPolicyIngestionType": "System.String", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -36,7 +36,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -48,7 +48,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -57,7 +57,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -66,7 +66,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -76,7 +76,23 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureTrafficCollectorInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -96,7 +112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -105,7 +121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -114,7 +130,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -124,7 +140,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -134,7 +150,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -143,7 +159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -152,7 +168,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -167,7 +195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -182,7 +210,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -197,7 +225,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -217,7 +245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -232,7 +260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -247,7 +275,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -263,7 +291,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -279,7 +307,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -294,7 +322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -309,7 +337,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -329,7 +375,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -347,7 +393,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -362,7 +408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -377,7 +423,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -397,7 +443,181 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentityAzureTrafficCollector", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -412,7 +632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -427,7 +647,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -443,7 +663,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -459,7 +679,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -474,7 +694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -489,7 +709,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -509,7 +747,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -535,7 +773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -550,7 +788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -565,7 +803,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -581,7 +819,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -597,7 +835,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -612,7 +850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -627,7 +865,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -651,7 +907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -666,7 +922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -681,7 +937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -697,7 +953,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -713,7 +969,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -728,7 +984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -743,7 +999,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -768,13 +1042,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CollectorPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", + "CollectorPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference]", "Etag": "System.String", + "ProvisioningState": "System.String", "VirtualHubId": "System.String" } }, @@ -792,7 +1066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -801,7 +1075,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -810,7 +1084,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -820,7 +1094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -840,7 +1114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -849,7 +1123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -858,7 +1132,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -868,7 +1142,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -878,7 +1152,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -887,7 +1161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -896,7 +1170,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -914,7 +1200,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -929,7 +1215,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -944,7 +1230,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -964,7 +1250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -979,7 +1265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -994,7 +1280,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1010,7 +1296,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1026,7 +1312,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1041,7 +1327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1056,7 +1342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1064,19 +1350,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List1", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1091,7 +1395,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1111,7 +1415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1126,7 +1430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1141,7 +1445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1157,7 +1461,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1173,7 +1477,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1188,7 +1492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1203,7 +1507,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1223,7 +1545,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1243,7 +1565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1258,7 +1580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1273,7 +1595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1289,7 +1611,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1305,7 +1627,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1320,7 +1642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1335,7 +1657,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1355,7 +1695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -1381,7 +1721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1396,7 +1736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1411,7 +1751,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1427,7 +1767,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1443,7 +1783,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1458,7 +1798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1473,7 +1813,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1497,7 +1855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1512,7 +1870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1527,7 +1885,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1543,7 +1901,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1559,7 +1917,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1574,7 +1932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1589,7 +1947,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1610,19 +1986,19 @@ "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EmissionPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "IngestionPolicyIngestionSource": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "IngestionPolicyIngestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String" + "EmissionPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]", + "IngestionPolicyIngestionSource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]", + "Etag": "System.String", + "IngestionPolicyIngestionType": "System.String", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -1632,23 +2008,23 @@ ], "Parameters": [ { - "Name": "AzureTrafficCollectorName", + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "CollectorPolicyName" - ], + "Name": "AzureTrafficCollectorName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1657,7 +2033,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1666,7 +2042,23 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureTrafficCollectorInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -1675,36 +2067,36 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "EmissionPolicy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" }, "ValidateNotNullOrEmpty": false }, { "Name": "IngestionPolicyIngestionSource", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" }, "ValidateNotNullOrEmpty": false }, { "Name": "IngestionPolicyIngestionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1713,7 +2105,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1726,7 +2118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1735,7 +2127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1744,7 +2136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1753,7 +2145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1763,7 +2155,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1773,7 +2165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1782,7 +2174,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1791,7 +2183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1800,7 +2192,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1809,21 +2213,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "AzureTrafficCollectorName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", @@ -1833,22 +2222,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1857,28 +2231,13 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1891,10 +2250,10 @@ "ParameterMetadata": { "Name": "EmissionPolicy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" }, "ValidateNotNullOrEmpty": false }, @@ -1907,10 +2266,10 @@ "ParameterMetadata": { "Name": "IngestionPolicyIngestionSource", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" }, "ValidateNotNullOrEmpty": false }, @@ -1923,9 +2282,9 @@ "ParameterMetadata": { "Name": "IngestionPolicyIngestionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1940,7 +2299,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1959,7 +2318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1974,7 +2333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1989,7 +2348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2004,7 +2363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2020,7 +2379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2036,7 +2395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2051,7 +2410,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2066,7 +2425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2081,7 +2440,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2091,187 +2468,17 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkFunctionTrafficCollector", - "Name": "New-AzNetworkFunctionTrafficCollector", - "ClassName": "New-AzNetworkFunctionTrafficCollector", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CollectorPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String", - "VirtualHubId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AzureTrafficCollectorName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AzureTrafficCollectorName" - ], + "Name": "AzureTrafficCollectorName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2286,7 +2493,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2301,7 +2508,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2310,13 +2517,31 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2325,13 +2550,60 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "EmissionPolicy", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IngestionPolicyIngestionSource", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IngestionPolicyIngestionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2350,7 +2622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2365,7 +2637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2380,7 +2652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2395,7 +2667,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2411,7 +2683,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2427,7 +2699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2442,7 +2714,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2457,7 +2729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2472,7 +2744,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2482,200 +2772,30 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzNetworkFunctionCollectorPolicy", - "Name": "Remove-AzNetworkFunctionCollectorPolicy", - "ClassName": "Remove-AzNetworkFunctionCollectorPolicy", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AzureTrafficCollectorName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "CollectorPolicyName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AzureTrafficCollectorName": "System.String", - "CollectorPolicyName": "System.String", - "Id": "System.String", - "ResourceGroupName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", + "Name": "CreateViaIdentityAzureTrafficCollectorExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureTrafficCollectorName", + "Name": "AzureTrafficCollectorInputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -2687,7 +2807,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2698,11 +2818,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2713,107 +2833,12 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", + "Name": "EmissionPolicy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" }, "ValidateNotNullOrEmpty": false }, @@ -2824,11 +2849,12 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "IngestionPolicyIngestionSource", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" }, "ValidateNotNullOrEmpty": false }, @@ -2839,26 +2865,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "IngestionPolicyIngestionType", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2869,11 +2880,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2881,33 +2892,6 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AzureTrafficCollectorName": "System.String", - "CollectorPolicyName": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -2919,7 +2903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2934,7 +2918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2949,7 +2933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2964,7 +2948,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2980,7 +2964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2996,22 +2980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3026,7 +2995,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3041,7 +3010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3056,7 +3025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3064,160 +3033,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3231,20 +3057,26 @@ ] }, { - "VerbName": "Remove", + "VerbName": "New", "NounName": "AzNetworkFunctionTrafficCollector", - "Name": "Remove-AzNetworkFunctionTrafficCollector", - "ClassName": "Remove-AzNetworkFunctionTrafficCollector", + "Name": "New-AzNetworkFunctionTrafficCollector", + "ClassName": "New-AzNetworkFunctionTrafficCollector", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Delete", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CollectorPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference]", + "Etag": "System.String", + "ProvisioningState": "System.String", + "VirtualHubId": "System.String" + } }, "ParameterSets": [ "__AllParameterSets" @@ -3260,7 +3092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3269,7 +3101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3278,7 +3110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3287,7 +3119,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -3298,6 +3130,42 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -3307,7 +3175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3316,7 +3184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3325,7 +3193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3334,7 +3202,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3344,7 +3212,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3354,16 +3222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3372,7 +3231,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3381,7 +3240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3390,14 +3249,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Delete", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { @@ -3408,7 +3279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3423,7 +3294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3438,7 +3309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3447,6 +3318,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3457,7 +3343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3472,7 +3358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3487,7 +3373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3502,7 +3388,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3518,7 +3404,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3534,7 +3420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3545,11 +3431,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3560,11 +3446,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3575,11 +3461,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3590,11 +3476,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3606,56 +3495,48 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "AzureTrafficCollectorName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AzureTrafficCollectorName": "System.String", - "CollectorPolicyName": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3666,27 +3547,30 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "JsonFilePath", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3697,11 +3581,41 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3713,11 +3627,12 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -3728,11 +3643,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3747,7 +3662,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3762,7 +3677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3777,7 +3692,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3789,8 +3722,86 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CreateExpanded", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AzureTrafficCollectorName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3801,7 +3812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3816,7 +3827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3831,7 +3842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3846,7 +3857,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3862,7 +3873,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3878,7 +3889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3889,11 +3900,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3904,11 +3915,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3919,11 +3930,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3934,11 +3945,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3948,223 +3962,39 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzNetworkFunctionCollectorPolicy", - "Name": "Update-AzNetworkFunctionCollectorPolicy", - "ClassName": "Update-AzNetworkFunctionCollectorPolicy", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EmissionPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "IngestionPolicyIngestionSource": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "IngestionPolicyIngestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AzureTrafficCollectorName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "CollectorPolicyName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EmissionPolicy", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IngestionPolicyIngestionSource", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IngestionPolicyIngestionType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType, Az.NetworkFunction.private, Version=0.1.4.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureTrafficCollectorName", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4175,44 +4005,60 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ - "CollectorPolicyName" + "AzureRMContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4223,27 +4069,28 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EmissionPolicy", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -4254,12 +4101,11 @@ }, { "ParameterMetadata": { - "Name": "IngestionPolicyIngestionSource", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4270,11 +4116,11 @@ }, { "ParameterMetadata": { - "Name": "IngestionPolicyIngestionType", + "Name": "Proxy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4285,11 +4131,26 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ProxyCredential", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4298,6 +4159,29 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -4308,7 +4192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4323,7 +4207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4338,7 +4222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4353,7 +4237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4369,7 +4253,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4385,7 +4269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4400,7 +4284,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4415,7 +4299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4430,7 +4314,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4444,27 +4346,20 @@ ] }, { - "VerbName": "Update", - "NounName": "AzNetworkFunctionCollectorPolicyTag", - "Name": "Update-AzNetworkFunctionCollectorPolicyTag", - "ClassName": "Update-AzNetworkFunctionCollectorPolicyTag", + "VerbName": "Remove", + "NounName": "AzNetworkFunctionCollectorPolicy", + "Name": "Remove-AzNetworkFunctionCollectorPolicy", + "ClassName": "Remove-AzNetworkFunctionCollectorPolicy", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", + "DefaultParameterSetName": "Delete", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EmissionPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "IngestionPolicyIngestionSource": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "IngestionPolicyIngestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -4477,16 +4372,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "CollectorPolicyName", + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4495,7 +4393,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4504,7 +4402,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4513,7 +4411,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -4525,11 +4423,18 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "AzureTrafficCollectorInputObject", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -4542,7 +4447,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4551,7 +4465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4560,7 +4474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4570,26 +4484,44 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyCredential", + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4598,14 +4530,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "UpdateExpanded", + "Name": "Delete", "Parameters": [ { "ParameterMetadata": { @@ -4613,7 +4557,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4624,11 +4568,14 @@ }, { "ParameterMetadata": { - "Name": "CollectorPolicyName", + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4643,7 +4590,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4658,7 +4605,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4669,11 +4616,15 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4684,15 +4635,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4707,7 +4654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4722,7 +4669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4738,7 +4685,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4748,13 +4695,43 @@ "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.4.6.500, 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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4769,7 +4746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4784,7 +4761,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4796,15 +4791,33 @@ ] }, { - "Name": "UpdateViaIdentityExpanded", + "Name": "DeleteViaIdentityAzureTrafficCollector", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorInputObject", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureTrafficCollectorName": "System.String", "CollectorPolicyName": "System.String", @@ -4822,11 +4835,15 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4837,15 +4854,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4860,7 +4873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4875,7 +4888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4891,7 +4904,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4901,13 +4914,43 @@ "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.4.6.500, 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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4922,7 +4965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4937,7 +4980,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4949,21 +5010,28 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "DeleteViaIdentity", "Parameters": [ { "ParameterMetadata": { - "Name": "Tag", + "Name": "InputObject", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -4976,7 +5044,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4991,7 +5074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5006,7 +5089,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5022,7 +5105,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5032,13 +5115,43 @@ "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.4.6.500, 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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5053,7 +5166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5068,7 +5181,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5078,30 +5209,203 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzNetworkFunctionTrafficCollector", - "Name": "Update-AzNetworkFunctionTrafficCollector", - "ClassName": "Update-AzNetworkFunctionTrafficCollector", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + }, + { + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.4.6.500, 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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzNetworkFunctionTrafficCollector", + "Name": "Remove-AzNetworkFunctionTrafficCollector", + "ClassName": "Remove-AzNetworkFunctionTrafficCollector", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", + "DefaultParameterSetName": "Delete", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CollectorPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String", - "VirtualHubId": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -5117,7 +5421,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5126,7 +5430,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5135,35 +5439,23 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CollectorPolicy", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "InputObject", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -5176,7 +5468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5185,7 +5477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5194,7 +5486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5203,7 +5495,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5213,7 +5505,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5223,7 +5515,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5232,7 +5533,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5241,7 +5542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5250,14 +5551,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "Delete", "Parameters": [ { "ParameterMetadata": { @@ -5268,7 +5581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5283,7 +5596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5298,7 +5611,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5309,27 +5622,30 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CollectorPolicy", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5340,11 +5656,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Break", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5355,45 +5671,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -5404,11 +5687,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "HttpPipelinePrepend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5420,12 +5703,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "NoWait", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5436,11 +5718,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5455,7 +5737,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5470,7 +5752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5485,7 +5767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5493,217 +5775,63 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzNetworkFunctionTrafficCollectorTag", - "Name": "Update-AzNetworkFunctionTrafficCollectorTag", - "ClassName": "Update-AzNetworkFunctionTrafficCollectorTag", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CollectorPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String", - "VirtualHubId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AzureTrafficCollectorName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AzureTrafficCollectorName": "System.String", - "CollectorPolicyName": "System.String", - "Id": "System.String", - "ResourceGroupName": "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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AzureTrafficCollectorName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5714,15 +5842,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5737,7 +5861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5752,7 +5876,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5768,7 +5892,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5780,11 +5904,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5795,26 +5919,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5822,41 +5931,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AzureTrafficCollectorName": "System.String", - "CollectorPolicyName": "System.String", - "Id": "System.String", - "ResourceGroupName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Proxy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5867,15 +5949,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5886,27 +5964,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5917,12 +5979,14 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5930,14 +5994,23 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Proxy", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5948,11 +6021,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5963,11 +6036,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5975,19 +6048,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -5998,15 +6067,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -6017,11 +6083,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6032,12 +6098,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "PassThru", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6048,12 +6113,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Proxy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6064,11 +6128,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6079,11 +6143,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6094,11 +6158,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6110,482 +6177,3471 @@ ] } ] - } - ], - "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.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat" - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EmissionDestination": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination[]", - "EmissionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType]" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination" - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPolicyDestination, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DestinationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType]" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType" - ] }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + { + "VerbName": "Update", + "NounName": "AzNetworkFunctionCollectorPolicy", + "Name": "Update-AzNetworkFunctionCollectorPolicy", + "ClassName": "Update-AzNetworkFunctionCollectorPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ { - "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" + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EmissionPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]", + "IngestionPolicyIngestionSource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]", + "Etag": "System.String", + "IngestionPolicyIngestionType": "System.String", + "ProvisioningState": "System.String" } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.DestinationType" - } + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + "Name": "EmissionPolicy", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" + }, + "ValidateNotNullOrEmpty": false + }, { - "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": "IngestionPolicyIngestionSource", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.EmissionType" - } - ], - "ReturnType": "System.Boolean" + "Name": "IngestionPolicyIngestionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat" - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SourceType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType]", - "ResourceId": "System.String" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, { - "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": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.SourceType" - } - ], - "ReturnType": "System.Boolean" + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false } - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "CollectorPolicyName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EmissionPolicy", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IngestionPolicyIngestionSource", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IngestionPolicyIngestionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Update", + "NounName": "AzNetworkFunctionCollectorPolicyTag", + "Name": "Update-AzNetworkFunctionCollectorPolicyTag", + "ClassName": "Update-AzNetworkFunctionCollectorPolicyTag", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EmissionPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]", + "IngestionPolicyIngestionSource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]", + "Etag": "System.String", + "IngestionPolicyIngestionType": "System.String", + "ProvisioningState": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CollectorPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureTrafficCollectorInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectorPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectorPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectorPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityAzureTrafficCollectorExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectorPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorInputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Update", + "NounName": "AzNetworkFunctionTrafficCollector", + "Name": "Update-AzNetworkFunctionTrafficCollector", + "ClassName": "Update-AzNetworkFunctionTrafficCollector", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CollectorPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference]", + "Etag": "System.String", + "ProvisioningState": "System.String", + "VirtualHubId": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "AzureTrafficCollectorName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CollectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AzureTrafficCollectorName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy" + }, + "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=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Update", + "NounName": "AzNetworkFunctionTrafficCollectorTag", + "Name": "Update-AzNetworkFunctionTrafficCollectorTag", + "ClassName": "Update-AzNetworkFunctionTrafficCollectorTag", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IAzureTrafficCollector, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CollectorPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference]", + "Etag": "System.String", + "ProvisioningState": "System.String", + "VirtualHubId": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureTrafficCollectorName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.INetworkFunctionIdentity, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AzureTrafficCollectorName": "System.String", + "CollectorPolicyName": "System.String", + "Id": "System.String", + "ResourceGroupName": "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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, { - "Name": "CompleteArgument", + "Name": "__AllParameterSets", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep[], Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" + ] } ] + } + ], + "TypeDictionary": { + "System.String": { + "Name": "System.String" }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "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" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState" + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState, Az.NetworkFunction.private, Version=0.1.4.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.NetworkFunction.Support.ProvisioningState" - } - ], - "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.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EmissionDestination": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination]", + "EmissionType": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination" + ] + }, + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPolicyDestination, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationType": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat" ] }, + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ResourceId": "System.String", + "SourceType": "System.String" + } + }, "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Runtime.SendAsyncStep, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -6719,17 +9775,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -6737,53 +9793,60 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference[], Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IResourceReference, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IResourceReference, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.ICollectorPolicy, Az.NetworkFunction.private, Version=0.1.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EmissionPolicy": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IEmissionPoliciesPropertiesFormat[]", - "IngestionPolicyIngestionSource": "Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.Api20221101.IIngestionSourcesPropertiesFormat[]", - "IngestionPolicyIngestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.IngestionType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Support.ProvisioningState]", - "Etag": "System.String" + "EmissionPolicy": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IEmissionPoliciesPropertiesFormat]", + "IngestionPolicyIngestionSource": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.NetworkFunction.Models.IIngestionSourcesPropertiesFormat]", + "Etag": "System.String", + "IngestionPolicyIngestionType": "System.String", + "ProvisioningState": "System.String" } } } diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Oracle.json b/tools/Tools.Common/SerializedCmdlets/Az.Oracle.json index 525e5875351b..83f09d7410fc 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Oracle.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Oracle.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Oracle", - "ModuleVersion": "1.1.0", + "ModuleVersion": "1.1.1", "Cmdlets": [ { "VerbName": "Add", @@ -84,7 +84,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -93,7 +93,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -102,7 +102,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -141,7 +141,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -151,7 +151,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -160,7 +160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -173,7 +173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -182,7 +182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -191,7 +191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -220,7 +220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -229,7 +229,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -238,7 +238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -247,7 +247,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -262,7 +274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -277,7 +289,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -292,7 +304,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -307,7 +319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -326,7 +338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -341,7 +353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -356,7 +368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -403,7 +415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -418,7 +430,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -433,7 +445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -448,7 +460,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -468,7 +498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -483,7 +513,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -498,7 +528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -513,7 +543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -532,7 +562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -547,7 +577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -562,7 +592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -609,7 +639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -624,7 +654,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -639,7 +669,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -654,7 +684,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -674,7 +722,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -689,7 +737,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -704,7 +752,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -719,7 +767,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -739,7 +787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -754,7 +802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -769,7 +817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -816,7 +864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -831,7 +879,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -846,7 +894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -861,7 +909,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -917,7 +983,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -937,7 +1003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -952,7 +1018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -967,7 +1033,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1014,7 +1080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1029,7 +1095,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1044,7 +1110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1059,7 +1125,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1083,7 +1167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1098,7 +1182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1113,7 +1197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1160,7 +1244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1175,7 +1259,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1190,7 +1274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1205,7 +1289,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1348,7 +1450,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1357,7 +1459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1366,7 +1468,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1410,7 +1512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1419,7 +1521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1448,7 +1550,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1457,7 +1559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1466,7 +1568,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1484,7 +1598,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1499,7 +1613,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1514,7 +1628,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1534,7 +1648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1549,7 +1663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1596,7 +1710,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1611,7 +1725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1626,7 +1740,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1646,7 +1778,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1661,7 +1793,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1681,7 +1813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1696,7 +1828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1743,7 +1875,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1758,7 +1890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1773,7 +1905,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1793,7 +1943,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1813,7 +1963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1828,7 +1978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1875,7 +2025,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1890,7 +2040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1905,7 +2055,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1965,7 +2133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1980,7 +2148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2027,7 +2195,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2042,7 +2210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2057,7 +2225,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2081,7 +2267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2096,7 +2282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2143,7 +2329,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2158,7 +2344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2173,7 +2359,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2231,7 +2435,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2240,7 +2444,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2249,7 +2453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2258,7 +2462,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2332,7 +2536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2341,7 +2545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2370,7 +2574,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2379,7 +2583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2388,7 +2592,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2403,7 +2619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2458,7 +2674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2473,7 +2689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2520,7 +2736,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2535,7 +2751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2550,7 +2766,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2570,7 +2804,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2585,7 +2819,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2600,7 +2834,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2615,7 +2849,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2635,7 +2869,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2650,7 +2884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2697,7 +2931,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2712,7 +2946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2727,7 +2961,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2747,7 +2999,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2762,7 +3014,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2777,7 +3029,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2797,7 +3049,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2812,7 +3064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2859,7 +3111,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2874,7 +3126,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2889,7 +3141,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2949,7 +3219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2964,7 +3234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3011,7 +3281,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3026,7 +3296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3041,7 +3311,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3065,7 +3353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3080,7 +3368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3127,7 +3415,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3142,7 +3430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3157,7 +3445,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3200,7 +3506,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3209,7 +3515,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3218,7 +3524,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3292,7 +3598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3301,7 +3607,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3330,7 +3636,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3339,7 +3645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3348,7 +3654,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3363,7 +3681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3418,7 +3736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3433,7 +3751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3480,7 +3798,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3495,7 +3813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3510,7 +3828,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3530,7 +3866,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3545,7 +3881,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3560,7 +3896,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3580,7 +3916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3595,7 +3931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3642,7 +3978,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3657,7 +3993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3672,7 +4008,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3692,7 +4046,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3707,7 +4061,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3727,7 +4081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3742,7 +4096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3789,7 +4143,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3804,7 +4158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3819,7 +4173,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3879,7 +4251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3894,7 +4266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3941,7 +4313,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3956,7 +4328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3971,7 +4343,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3995,7 +4385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4010,7 +4400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4057,7 +4447,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4072,7 +4462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4087,7 +4477,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4130,7 +4538,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4139,7 +4547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4148,7 +4556,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4222,7 +4630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4231,7 +4639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4260,7 +4668,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4269,7 +4677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4278,7 +4686,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4293,7 +4713,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4348,7 +4768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4363,7 +4783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4410,7 +4830,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4425,7 +4845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4440,7 +4860,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4460,7 +4898,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4475,7 +4913,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4490,7 +4928,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4510,7 +4948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4525,7 +4963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4572,7 +5010,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4587,7 +5025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4602,7 +5040,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4622,7 +5078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4637,7 +5093,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4657,7 +5113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4672,7 +5128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4719,7 +5175,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4734,7 +5190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4749,7 +5205,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4809,7 +5283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4824,7 +5298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4871,7 +5345,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4886,7 +5360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4901,7 +5375,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4925,7 +5417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4940,7 +5432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4987,7 +5479,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5002,7 +5494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5017,7 +5509,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5065,7 +5575,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5074,7 +5584,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5083,7 +5593,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5157,7 +5667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5166,7 +5676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5195,7 +5705,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5204,7 +5714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5213,7 +5723,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5228,7 +5750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5283,7 +5805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5298,7 +5820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5345,7 +5867,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5360,7 +5882,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5375,7 +5897,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5395,7 +5935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5410,7 +5950,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5425,7 +5965,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5445,7 +5985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5460,7 +6000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5507,7 +6047,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5522,7 +6062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5537,7 +6077,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5557,7 +6115,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5572,7 +6130,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5592,7 +6150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5607,7 +6165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5654,7 +6212,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5669,7 +6227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5684,7 +6242,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5744,7 +6320,141 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5759,7 +6469,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5806,7 +6516,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5821,7 +6531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5836,7 +6546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5844,115 +6554,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6041,7 +6653,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6050,7 +6662,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6059,7 +6671,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6103,7 +6715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6112,7 +6724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6141,7 +6753,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6150,7 +6762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6159,7 +6771,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6177,7 +6801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6192,7 +6816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6207,7 +6831,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6227,7 +6851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6242,7 +6866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6289,7 +6913,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6304,7 +6928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6319,7 +6943,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6339,7 +6981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6354,7 +6996,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6374,7 +7016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6389,7 +7031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6436,7 +7078,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6451,7 +7093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6466,7 +7108,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6486,7 +7146,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6506,7 +7166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6521,7 +7181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6568,7 +7228,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6583,7 +7243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6598,7 +7258,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6658,7 +7336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6673,7 +7351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6720,7 +7398,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6735,7 +7413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6750,7 +7428,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6774,7 +7470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6789,7 +7485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6836,7 +7532,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6851,7 +7547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6866,7 +7562,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6964,7 +7678,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6973,7 +7687,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6982,7 +7696,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7026,7 +7740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7035,7 +7749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7064,7 +7778,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7073,7 +7787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7082,7 +7796,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7100,7 +7826,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7115,7 +7841,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7130,7 +7856,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7150,7 +7876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7165,7 +7891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7212,7 +7938,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7227,7 +7953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7242,7 +7968,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7262,7 +8006,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7277,7 +8021,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7297,7 +8041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7312,7 +8056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7359,7 +8103,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7374,7 +8118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7389,7 +8133,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7409,7 +8171,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7429,7 +8191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7444,7 +8206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7491,7 +8253,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7506,7 +8268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7521,7 +8283,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7581,7 +8361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7596,7 +8376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7643,7 +8423,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7658,7 +8438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7673,7 +8453,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7697,7 +8495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7712,7 +8510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7759,7 +8557,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7774,7 +8572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7789,7 +8587,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7854,7 +8670,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7866,7 +8682,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7875,7 +8691,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7884,7 +8700,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7958,7 +8774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7967,7 +8783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7996,7 +8812,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8005,7 +8821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8014,7 +8830,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8029,7 +8857,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8044,7 +8872,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8059,7 +8887,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8079,7 +8907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8094,7 +8922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8141,7 +8969,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8156,7 +8984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8171,7 +8999,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8191,7 +9037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8209,7 +9055,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8224,7 +9070,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8239,7 +9085,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8259,7 +9105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8274,7 +9120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8321,7 +9167,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8336,7 +9182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8351,7 +9197,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8374,7 +9238,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8429,7 +9293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8444,7 +9308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8491,7 +9355,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8506,7 +9370,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8521,7 +9385,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8581,7 +9463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8596,7 +9478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8643,7 +9525,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8658,7 +9540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8673,7 +9555,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8697,7 +9597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8712,7 +9612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8759,7 +9659,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8774,7 +9674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8789,7 +9689,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8854,7 +9772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8866,7 +9784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8875,7 +9793,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8884,7 +9802,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -8958,7 +9876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8967,7 +9885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8996,7 +9914,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9005,7 +9923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9014,7 +9932,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9029,7 +9959,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9044,7 +9974,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9059,7 +9989,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -9079,7 +10009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9094,7 +10024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9141,7 +10071,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9156,7 +10086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9171,7 +10101,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9191,7 +10139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9209,7 +10157,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9224,7 +10172,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9239,7 +10187,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -9259,7 +10207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9274,7 +10222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9321,7 +10269,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9336,7 +10284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9351,7 +10299,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9374,7 +10340,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9429,7 +10395,177 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.Oracle.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IOracleIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IOracleIdentity, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Adbbackupid": "System.String", + "SubscriptionId": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "Id": "System.String", + "Giversionname": "System.String", + "Dnsprivatezonename": "System.String", + "Dnsprivateviewocid": "System.String", + "Systemversionname": "System.String", + "Dbsystemshapename": "System.String", + "Dbnodeocid": "System.String", + "Cloudvmclustername": "System.String", + "Cloudexadatainfrastructurename": "System.String", + "Autonomousdbversionsname": "System.String", + "Autonomousdatabasename": "System.String", + "Adbsncharsetname": "System.String", + "Adbscharsetname": "System.String", + "Dbserverocid": "System.String", + "Virtualnetworkaddressname": "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9444,7 +10580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9491,7 +10627,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9506,7 +10642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9521,7 +10657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9529,48 +10665,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IOracleIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IOracleIdentity, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Adbbackupid": "System.String", - "SubscriptionId": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "Id": "System.String", - "Giversionname": "System.String", - "Dnsprivatezonename": "System.String", - "Dnsprivateviewocid": "System.String", - "Systemversionname": "System.String", - "Dbsystemshapename": "System.String", - "Dbnodeocid": "System.String", - "Cloudvmclustername": "System.String", - "Cloudexadatainfrastructurename": "System.String", - "Autonomousdbversionsname": "System.String", - "Autonomousdatabasename": "System.String", - "Adbsncharsetname": "System.String", - "Adbscharsetname": "System.String", - "Dbserverocid": "System.String", - "Virtualnetworkaddressname": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -9581,7 +10699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9596,7 +10714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9643,7 +10761,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9658,7 +10776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9673,7 +10791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9681,115 +10799,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9851,7 +10871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9863,7 +10883,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9872,7 +10892,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -9946,7 +10966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9955,7 +10975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9984,7 +11004,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9993,7 +11013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10002,7 +11022,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10017,7 +11049,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10032,7 +11064,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10052,7 +11084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10067,7 +11099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10114,7 +11146,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10129,7 +11161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10144,7 +11176,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10164,7 +11214,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10182,7 +11232,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10197,7 +11247,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10217,7 +11267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10232,7 +11282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10279,7 +11329,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10294,7 +11344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10309,7 +11359,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10332,7 +11400,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10387,7 +11455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10402,7 +11470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10449,7 +11517,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10464,7 +11532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10479,7 +11547,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10539,7 +11625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10554,7 +11640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10601,7 +11687,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10616,7 +11702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10631,7 +11717,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10655,7 +11759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10670,7 +11774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10717,7 +11821,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10732,7 +11836,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10747,7 +11851,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10797,7 +11919,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10809,7 +11931,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10818,7 +11940,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10892,7 +12014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10901,7 +12023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10930,7 +12052,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10939,7 +12061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10948,7 +12070,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10963,7 +12097,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10978,7 +12112,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -10998,7 +12132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11013,7 +12147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11060,7 +12194,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11075,7 +12209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11090,7 +12224,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11110,7 +12262,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11128,7 +12280,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11143,7 +12295,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -11163,7 +12315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11178,7 +12330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11225,7 +12377,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11240,7 +12392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11255,7 +12407,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11278,7 +12448,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11333,7 +12503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11348,7 +12518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11395,7 +12565,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11410,7 +12580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11425,7 +12595,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11485,7 +12673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11500,7 +12688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11547,7 +12735,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11562,7 +12750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11577,7 +12765,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11601,7 +12807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11616,7 +12822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11663,7 +12869,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11678,7 +12884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11693,7 +12899,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11745,7 +12969,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11757,7 +12981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11766,7 +12990,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -11840,7 +13064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11849,7 +13073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11878,7 +13102,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11887,7 +13111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11896,7 +13120,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11911,7 +13147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11926,7 +13162,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -11946,7 +13182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11961,7 +13197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12008,7 +13244,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12023,7 +13259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12038,7 +13274,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12058,7 +13312,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12076,7 +13330,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12091,7 +13345,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12111,7 +13365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12126,7 +13380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12173,7 +13427,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12188,7 +13442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12203,7 +13457,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12226,7 +13498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12281,7 +13553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12296,7 +13568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12343,7 +13615,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12358,7 +13630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12373,7 +13645,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12433,7 +13723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12448,7 +13738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12495,7 +13785,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12510,7 +13800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12525,7 +13815,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12549,7 +13857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12564,7 +13872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12611,7 +13919,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12626,7 +13934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12641,7 +13949,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12684,7 +14010,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12696,7 +14022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12705,7 +14031,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12779,7 +14105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12788,7 +14114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12817,7 +14143,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12826,7 +14152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12835,7 +14161,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12850,7 +14188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12865,7 +14203,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -12885,7 +14223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12900,7 +14238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12947,7 +14285,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12962,7 +14300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12977,7 +14315,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12997,7 +14353,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13015,7 +14371,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13030,7 +14386,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -13050,7 +14406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13065,7 +14421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13112,7 +14468,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13127,7 +14483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13142,7 +14498,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13165,7 +14539,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13220,7 +14594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13235,7 +14609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13282,7 +14656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13297,7 +14671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13312,7 +14686,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13372,7 +14764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13387,7 +14779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13434,7 +14826,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13449,7 +14841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13464,7 +14856,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13488,7 +14898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13503,7 +14913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13550,7 +14960,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13565,7 +14975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13580,7 +14990,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13645,7 +15073,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13654,7 +15082,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13663,7 +15091,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13672,7 +15100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13741,7 +15169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13750,7 +15178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13759,7 +15187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13772,7 +15200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13781,7 +15209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13790,7 +15218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13819,7 +15247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13828,7 +15256,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13837,7 +15265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13846,7 +15274,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13861,7 +15301,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13876,7 +15316,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13891,7 +15331,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13906,7 +15346,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13921,7 +15361,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13940,7 +15380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13955,7 +15395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13970,7 +15410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14017,7 +15457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14032,7 +15472,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14047,7 +15487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14062,7 +15502,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14082,7 +15540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14097,7 +15555,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14112,7 +15570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14127,7 +15585,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14142,7 +15600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14161,7 +15619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14176,7 +15634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14191,7 +15649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14238,7 +15696,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14253,7 +15711,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14268,7 +15726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14283,7 +15741,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14303,7 +15779,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14318,7 +15794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14333,7 +15809,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14348,7 +15824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14363,7 +15839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14382,7 +15858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14397,7 +15873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14412,7 +15888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14459,7 +15935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14474,7 +15950,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14489,7 +15965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14504,7 +15980,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14524,7 +16018,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14575,7 +16069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14594,7 +16088,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14609,7 +16103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14624,7 +16118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14671,7 +16165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14686,7 +16180,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14701,7 +16195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14716,7 +16210,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14772,7 +16284,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14791,7 +16303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14806,7 +16318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14821,7 +16333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14868,7 +16380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14883,7 +16395,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14898,7 +16410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14913,7 +16425,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14937,7 +16467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14952,7 +16482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14967,7 +16497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15014,7 +16544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15029,7 +16559,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15044,7 +16574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15059,7 +16589,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15199,7 +16747,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15208,7 +16756,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15217,7 +16765,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15256,7 +16804,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15265,7 +16813,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15274,7 +16822,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15287,7 +16835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15296,7 +16844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15305,7 +16853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15334,7 +16882,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15343,7 +16891,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15352,7 +16900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15361,7 +16909,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15376,7 +16936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15391,7 +16951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15406,7 +16966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15421,7 +16981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15440,7 +17000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15455,7 +17015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15470,7 +17030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15517,7 +17077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15532,7 +17092,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15547,7 +17107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15562,7 +17122,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15582,7 +17160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15597,7 +17175,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15612,7 +17190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15627,7 +17205,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15646,7 +17224,231 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SwitchoverExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Autonomousdatabasename", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeerDbId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15661,7 +17463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15676,7 +17478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15723,7 +17525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15738,7 +17540,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15753,7 +17555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15768,7 +17570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15776,205 +17578,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SwitchoverExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Autonomousdatabasename", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PeerDbId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16030,7 +17644,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16049,7 +17663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16064,7 +17678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16079,7 +17693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16126,7 +17740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16141,7 +17755,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16156,7 +17770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16171,7 +17785,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16195,7 +17827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16210,7 +17842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16225,7 +17857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16272,7 +17904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16287,7 +17919,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16302,7 +17934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16317,7 +17949,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16460,7 +18110,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16469,7 +18119,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16478,7 +18128,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16487,7 +18137,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16496,7 +18146,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16505,7 +18155,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16514,7 +18164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16523,7 +18173,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16532,7 +18182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16541,7 +18191,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16550,7 +18200,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16559,7 +18209,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16578,7 +18228,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16587,7 +18237,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16596,7 +18246,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16605,7 +18255,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16614,7 +18264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16623,7 +18273,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16632,7 +18282,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16641,7 +18291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16650,7 +18300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16659,7 +18309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16668,7 +18318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16677,7 +18327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16686,7 +18336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16695,7 +18345,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16704,7 +18354,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16713,7 +18363,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16722,7 +18372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16731,7 +18381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16740,7 +18390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16749,7 +18399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16758,7 +18408,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16767,7 +18417,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16776,7 +18426,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -16786,7 +18436,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16795,7 +18445,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16808,7 +18458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16817,7 +18467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16826,7 +18476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16855,7 +18505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16864,7 +18514,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16873,7 +18523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16882,7 +18532,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -16900,7 +18562,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16915,7 +18577,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16930,7 +18592,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16949,7 +18611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16964,7 +18626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16979,7 +18641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17026,7 +18688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17041,7 +18703,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17056,7 +18718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17071,7 +18733,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17091,7 +18771,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17106,7 +18786,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17121,7 +18801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17136,7 +18816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17151,7 +18831,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17166,7 +18846,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17181,7 +18861,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17196,7 +18876,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17211,7 +18891,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17242,7 +18922,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17257,7 +18937,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17272,7 +18952,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17287,7 +18967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17302,7 +18982,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17317,7 +18997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17332,7 +19012,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17347,7 +19027,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17362,7 +19042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17377,7 +19057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17392,7 +19072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17407,7 +19087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17422,7 +19102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17437,7 +19117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17452,7 +19132,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17467,7 +19147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17482,7 +19162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17497,7 +19177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17512,7 +19192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17527,7 +19207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17542,7 +19222,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17557,7 +19237,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17572,7 +19252,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -17591,7 +19271,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17606,7 +19286,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17621,7 +19301,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17640,7 +19320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17655,7 +19335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17670,7 +19350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17717,7 +19397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17732,7 +19412,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17747,7 +19427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17762,7 +19442,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17782,7 +19480,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17800,7 +19498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17815,7 +19513,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17830,7 +19528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17849,7 +19547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17864,7 +19562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17879,7 +19577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17926,7 +19624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17941,7 +19639,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17956,7 +19654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17971,7 +19669,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17991,7 +19707,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18009,7 +19725,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18024,7 +19740,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18039,7 +19755,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18058,7 +19774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18073,7 +19789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18088,7 +19804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18135,7 +19851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18150,7 +19866,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18165,7 +19881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18180,7 +19896,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18238,7 +19972,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18247,7 +19981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18256,7 +19990,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18265,7 +19999,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18274,7 +20008,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18283,7 +20017,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18292,7 +20026,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18301,7 +20035,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18314,7 +20048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18323,7 +20057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18332,7 +20066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18361,7 +20095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18370,7 +20104,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18379,7 +20113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18388,7 +20122,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -18403,7 +20149,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18418,7 +20164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18433,7 +20179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18448,7 +20194,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18467,7 +20213,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18482,7 +20228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18497,7 +20243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18544,7 +20290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18559,7 +20305,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18574,7 +20320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18589,7 +20335,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18609,7 +20373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18624,7 +20388,67 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Adbbackupid", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Autonomousdatabasename", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18633,13 +20457,192 @@ "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Adbbackupid", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18654,7 +20657,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18669,7 +20672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18684,7 +20687,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18703,7 +20706,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18718,7 +20721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18733,7 +20736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18780,7 +20783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18795,7 +20798,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18810,7 +20813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18825,87 +20828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "CreateViaJsonFilePath", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "JsonFilePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Adbbackupid", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Autonomousdatabasename", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18916,137 +20839,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Runtime.SendAsyncStep[], Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Oracle.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19066,7 +20866,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19081,7 +20881,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19096,7 +20896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19111,7 +20911,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19126,7 +20926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19145,7 +20945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19160,7 +20960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19175,7 +20975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19222,7 +21022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19237,7 +21037,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19252,7 +21052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19267,7 +21067,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19356,7 +21174,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19365,7 +21183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19374,7 +21192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19383,7 +21201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19392,7 +21210,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -19402,7 +21220,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19421,7 +21239,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19430,7 +21248,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19449,7 +21267,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -19459,7 +21277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19468,7 +21286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19477,7 +21295,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19496,7 +21314,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19505,7 +21323,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19514,7 +21332,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -19524,7 +21342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19533,7 +21351,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19542,7 +21360,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19551,7 +21369,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19560,7 +21378,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19573,7 +21391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19582,7 +21400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19591,7 +21409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19620,7 +21438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19629,7 +21447,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19638,7 +21456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19647,7 +21465,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -19665,7 +21495,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19680,7 +21510,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19695,7 +21525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19714,7 +21544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19729,7 +21559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19744,7 +21574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19791,7 +21621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19806,7 +21636,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19821,7 +21651,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19836,7 +21666,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19856,7 +21704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19871,7 +21719,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -19887,7 +21735,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19918,7 +21766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19933,7 +21781,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19964,7 +21812,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -19980,7 +21828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19995,7 +21843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20010,7 +21858,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20041,7 +21889,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20056,7 +21904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20071,7 +21919,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -20087,7 +21935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20102,7 +21950,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20117,7 +21965,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20135,7 +21983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20150,7 +21998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20165,7 +22013,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20184,7 +22032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20199,7 +22047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20214,7 +22062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20261,7 +22109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20276,7 +22124,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20291,7 +22139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20306,7 +22154,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20326,7 +22192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20344,7 +22210,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20359,7 +22225,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20374,7 +22240,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20393,7 +22259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20408,7 +22274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20423,7 +22289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20470,7 +22336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20485,7 +22351,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20500,7 +22366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20515,7 +22381,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20535,7 +22419,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20553,7 +22437,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20568,7 +22452,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20583,7 +22467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20602,7 +22486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20617,7 +22501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20632,7 +22516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20679,7 +22563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20694,7 +22578,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20709,7 +22593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20724,7 +22608,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20822,7 +22724,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20831,7 +22733,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20840,7 +22742,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20849,7 +22751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20858,7 +22760,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20867,7 +22769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20876,7 +22778,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20885,7 +22787,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20894,7 +22796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20903,7 +22805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20912,7 +22814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20921,7 +22823,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20930,7 +22832,7 @@ "Type": { "Namespace": "System", "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20939,7 +22841,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20948,7 +22850,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -20958,7 +22860,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20967,7 +22869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20976,7 +22878,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20985,7 +22887,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20994,7 +22896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21003,7 +22905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21012,7 +22914,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21021,7 +22923,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21040,7 +22942,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21049,7 +22951,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21058,7 +22960,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21067,7 +22969,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -21077,7 +22979,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21086,7 +22988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21095,7 +22997,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21104,7 +23006,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21113,7 +23015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21122,7 +23024,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21131,7 +23033,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21140,7 +23042,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21153,7 +23055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21162,7 +23064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21171,7 +23073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21200,7 +23102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21209,7 +23111,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21218,7 +23120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21227,7 +23129,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -21245,7 +23159,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21260,7 +23174,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21275,7 +23189,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21294,7 +23208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21309,7 +23223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21324,7 +23238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21371,7 +23285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21386,7 +23300,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21401,7 +23315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21416,7 +23330,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21436,7 +23368,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21451,7 +23383,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21466,7 +23398,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21481,7 +23413,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21496,7 +23428,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21511,7 +23443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21526,7 +23458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21541,7 +23473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21556,7 +23488,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21571,7 +23503,7 @@ "Type": { "Namespace": "System", "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21586,7 +23518,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21601,7 +23533,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -21617,7 +23549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21632,7 +23564,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21647,7 +23579,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21662,7 +23594,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21677,7 +23609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21692,7 +23624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21707,7 +23639,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21722,7 +23654,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21753,7 +23685,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21768,7 +23700,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21783,7 +23715,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21798,7 +23730,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -21814,7 +23746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21829,7 +23761,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21844,7 +23776,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21859,7 +23791,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21874,7 +23806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21889,7 +23821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21907,7 +23839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21922,7 +23854,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21937,7 +23869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21956,7 +23888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21971,7 +23903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21986,7 +23918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22033,7 +23965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22048,7 +23980,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22063,7 +23995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22078,7 +24010,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22098,7 +24048,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22116,7 +24066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22131,7 +24081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22146,7 +24096,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22165,7 +24115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22180,7 +24130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22195,7 +24145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22242,7 +24192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22257,7 +24207,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22272,7 +24222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22287,7 +24237,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22307,7 +24275,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22325,7 +24293,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22340,7 +24308,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22355,7 +24323,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22374,7 +24342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22389,7 +24357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22404,7 +24372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22451,7 +24419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22466,7 +24434,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22481,7 +24449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22496,7 +24464,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22626,7 +24612,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -22641,7 +24639,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22649,6 +24647,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -22773,7 +24789,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22782,7 +24798,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22791,7 +24807,19 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -22806,7 +24834,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22821,7 +24849,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22836,7 +24864,25 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22863,7 +24909,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -22879,7 +24925,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22888,7 +24934,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22897,7 +24943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22940,7 +24986,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22949,7 +24995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22958,7 +25004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22987,7 +25033,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22996,7 +25042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23005,7 +25051,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23014,7 +25060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23023,7 +25069,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -23041,7 +25099,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23056,7 +25114,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23071,7 +25129,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23090,7 +25148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23105,7 +25163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23120,7 +25178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23167,7 +25225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23182,7 +25240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23197,7 +25255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23212,7 +25270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23227,7 +25285,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23287,7 +25363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23302,7 +25378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23317,7 +25393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23364,7 +25440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23379,7 +25455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23394,7 +25470,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23409,7 +25485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23424,7 +25500,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23448,7 +25542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23463,7 +25557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23478,7 +25572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23525,7 +25619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23540,7 +25634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23555,7 +25649,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23570,7 +25664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23585,7 +25679,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23612,7 +25724,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -23625,7 +25737,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23634,7 +25746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23643,7 +25755,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23652,7 +25764,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23725,7 +25837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23734,7 +25846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23743,7 +25855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23772,7 +25884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23781,7 +25893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23790,7 +25902,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23799,7 +25911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23808,7 +25920,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -23823,7 +25947,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23878,7 +26002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23893,7 +26017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23908,7 +26032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23955,7 +26079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23970,7 +26094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23985,7 +26109,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24000,7 +26124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24015,7 +26139,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24035,7 +26177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24050,7 +26192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24065,7 +26207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24080,7 +26222,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24099,7 +26241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24114,7 +26256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24129,7 +26271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24176,7 +26318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24191,7 +26333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24206,7 +26348,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24221,7 +26363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24236,7 +26378,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24296,7 +26456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24311,7 +26471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24326,7 +26486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24373,7 +26533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24388,7 +26548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24403,7 +26563,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24418,7 +26578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24433,7 +26593,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24457,7 +26635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24472,7 +26650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24487,7 +26665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24534,7 +26712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24549,7 +26727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24564,7 +26742,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24579,7 +26757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24594,7 +26772,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24621,7 +26817,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -24637,7 +26833,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24646,7 +26842,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24655,7 +26851,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24698,7 +26894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24707,7 +26903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24716,7 +26912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24745,7 +26941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24754,7 +26950,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24763,7 +26959,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24772,7 +26968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24781,7 +26977,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -24799,7 +27007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24814,7 +27022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24829,7 +27037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24848,7 +27056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24863,7 +27071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24878,7 +27086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24925,7 +27133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24940,7 +27148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24955,7 +27163,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24970,7 +27178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24985,7 +27193,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25045,7 +27271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25060,7 +27286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25075,7 +27301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25122,7 +27348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25137,7 +27363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25152,7 +27378,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25167,7 +27393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25182,7 +27408,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25206,7 +27450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25221,7 +27465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25236,7 +27480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25283,7 +27527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25298,7 +27542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25313,7 +27557,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25328,7 +27572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25343,7 +27587,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25370,7 +27632,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -25386,7 +27648,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25395,7 +27657,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25404,7 +27666,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25447,7 +27709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25456,7 +27718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25465,7 +27727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25494,7 +27756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25503,7 +27765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25512,7 +27774,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25521,7 +27783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25530,7 +27792,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -25548,7 +27822,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25563,7 +27837,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25578,7 +27852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25597,7 +27871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25612,7 +27886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25627,7 +27901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25674,7 +27948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25689,7 +27963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25704,7 +27978,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25719,7 +27993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25734,7 +28008,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25794,7 +28086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25809,7 +28101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25824,7 +28116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25871,7 +28163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25886,7 +28178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25901,7 +28193,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25916,7 +28208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25931,7 +28223,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25955,7 +28265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25970,7 +28280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25985,7 +28295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26032,7 +28342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26047,7 +28357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26062,7 +28372,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26077,7 +28387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26092,7 +28402,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26187,7 +28515,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26196,7 +28524,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26205,7 +28533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26256,7 +28584,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -26266,7 +28594,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26275,7 +28603,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26288,7 +28616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26297,7 +28625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26306,7 +28634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26335,7 +28663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26344,7 +28672,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26353,7 +28681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26362,7 +28690,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -26377,7 +28717,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26392,7 +28732,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26407,7 +28747,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26422,7 +28762,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26441,7 +28781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26456,7 +28796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26471,7 +28811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26518,7 +28858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26533,7 +28873,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26548,7 +28888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26563,7 +28903,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26583,7 +28941,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26598,7 +28956,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26613,7 +28971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26628,7 +28986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26647,7 +29005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26662,7 +29020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26677,7 +29035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26724,7 +29082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26739,7 +29097,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26754,7 +29112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26769,7 +29127,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26789,7 +29165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26804,7 +29180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26819,7 +29195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26834,7 +29210,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -26854,7 +29230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26869,7 +29245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26884,7 +29260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26931,7 +29307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26946,7 +29322,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26961,7 +29337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26976,7 +29352,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26996,7 +29390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27011,7 +29405,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27026,7 +29420,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27063,7 +29457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27078,7 +29472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27093,7 +29487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27140,7 +29534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27155,7 +29549,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27170,7 +29564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27185,7 +29579,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27241,7 +29653,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -27261,7 +29673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27276,7 +29688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27291,7 +29703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27338,7 +29750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27353,7 +29765,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27368,7 +29780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27383,7 +29795,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27461,7 +29891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27476,7 +29906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27491,7 +29921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27538,7 +29968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27553,7 +29983,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27568,7 +29998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27583,7 +30013,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27607,7 +30055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27622,7 +30070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27637,7 +30085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27684,7 +30132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27699,7 +30147,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27714,7 +30162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27729,7 +30177,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27872,7 +30338,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27881,7 +30347,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27890,7 +30356,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27941,7 +30407,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27950,7 +30416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27959,7 +30425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27972,7 +30438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27981,7 +30447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27990,7 +30456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28019,7 +30485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28028,7 +30494,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28037,7 +30503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28046,7 +30512,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -28064,7 +30542,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28079,7 +30557,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28094,7 +30572,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28109,7 +30587,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28128,7 +30606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28143,7 +30621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28158,7 +30636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28205,7 +30683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28220,7 +30698,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28235,7 +30713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28250,7 +30728,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28273,7 +30769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28288,7 +30784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28303,7 +30799,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28318,7 +30814,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28337,7 +30833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28352,7 +30848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28367,7 +30863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28414,7 +30910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28429,7 +30925,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28444,7 +30940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28459,7 +30955,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28482,7 +30996,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28497,7 +31011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28512,7 +31026,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28527,7 +31041,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28546,7 +31060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28561,7 +31075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28576,7 +31090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28623,7 +31137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28638,7 +31152,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28653,7 +31167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28668,7 +31182,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28691,7 +31223,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28706,7 +31238,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28721,7 +31253,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28758,7 +31290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28773,7 +31305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28788,7 +31320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28835,7 +31367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28850,7 +31382,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28865,7 +31397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28880,7 +31412,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28936,7 +31486,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28955,7 +31505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28970,7 +31520,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28985,7 +31535,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29032,7 +31582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29047,7 +31597,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29062,7 +31612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29077,7 +31627,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29155,7 +31723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29170,7 +31738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29185,7 +31753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29232,7 +31800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29247,7 +31815,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29262,7 +31830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29277,7 +31845,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29301,7 +31887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29316,7 +31902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29331,7 +31917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29378,7 +31964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29393,7 +31979,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29408,7 +31994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29423,7 +32009,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29566,7 +32170,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29575,7 +32179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29584,7 +32188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29623,7 +32227,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29632,7 +32236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29641,7 +32245,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29650,7 +32254,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29659,7 +32263,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29678,7 +32282,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29687,7 +32291,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29696,7 +32300,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29705,7 +32309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29714,7 +32318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29723,7 +32327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29732,7 +32336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29741,7 +32345,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29750,7 +32354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29759,7 +32363,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29768,7 +32372,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29777,7 +32381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29786,7 +32390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29795,7 +32399,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29804,7 +32408,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29813,7 +32417,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29822,7 +32426,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29831,7 +32435,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29840,7 +32444,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29849,7 +32453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29858,7 +32462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29867,7 +32471,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29876,7 +32480,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -29886,7 +32490,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29895,7 +32499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29908,7 +32512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29917,7 +32521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29926,7 +32530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29955,7 +32559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29964,7 +32568,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29973,7 +32577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29982,7 +32586,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -30000,7 +32616,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30015,7 +32631,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30030,7 +32646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30045,7 +32661,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30064,7 +32680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30079,7 +32695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30094,7 +32710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30141,7 +32757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30156,7 +32772,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30171,7 +32787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30186,7 +32802,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30209,7 +32843,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30224,7 +32858,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30239,7 +32873,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30254,7 +32888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30273,7 +32907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30288,7 +32922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30303,7 +32937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30350,7 +32984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30365,7 +32999,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30380,7 +33014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30395,7 +33029,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30418,7 +33070,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30433,7 +33085,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30448,7 +33100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30463,7 +33115,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30478,7 +33130,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30493,7 +33145,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30508,7 +33160,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30523,7 +33175,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30554,7 +33206,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30569,7 +33221,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30584,7 +33236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30599,7 +33251,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30614,7 +33266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30629,7 +33281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30644,7 +33296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30659,7 +33311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30674,7 +33326,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30689,7 +33341,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30704,7 +33356,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30719,7 +33371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30734,7 +33386,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30749,7 +33401,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30764,7 +33416,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30779,7 +33431,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30794,7 +33446,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30809,7 +33461,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30824,7 +33476,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30839,7 +33491,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30854,7 +33506,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30869,7 +33521,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30884,7 +33536,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -30904,7 +33556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30919,7 +33571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30934,7 +33586,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30981,7 +33633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30996,7 +33648,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31011,7 +33663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31026,7 +33678,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31082,7 +33752,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31097,7 +33767,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31112,7 +33782,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31127,7 +33797,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31142,7 +33812,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31173,7 +33843,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31188,7 +33858,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31203,7 +33873,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31218,7 +33888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31233,7 +33903,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31248,7 +33918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31263,7 +33933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31278,7 +33948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31293,7 +33963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31308,7 +33978,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31323,7 +33993,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31338,7 +34008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31353,7 +34023,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31368,7 +34038,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31383,7 +34053,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31398,7 +34068,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31413,7 +34083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31428,7 +34098,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31443,7 +34113,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31458,7 +34128,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31473,7 +34143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31488,7 +34158,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31503,7 +34173,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -31523,7 +34193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31538,7 +34208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31553,7 +34223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31600,7 +34270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31615,7 +34285,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31630,7 +34300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31645,7 +34315,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31669,7 +34357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31684,7 +34372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31699,7 +34387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31746,7 +34434,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31761,7 +34449,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31776,7 +34464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31791,7 +34479,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31880,7 +34586,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31889,7 +34595,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31898,7 +34604,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31937,7 +34643,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31956,7 +34662,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31965,7 +34671,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31984,7 +34690,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -31994,7 +34700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32003,7 +34709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32012,7 +34718,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32031,7 +34737,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32040,7 +34746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32049,7 +34755,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -32059,7 +34765,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32068,7 +34774,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32077,7 +34783,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -32087,7 +34793,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32096,7 +34802,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32109,7 +34815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32118,7 +34824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32127,7 +34833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32156,7 +34862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32165,7 +34871,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32174,7 +34880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32183,7 +34889,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -32201,7 +34919,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32216,7 +34934,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32231,7 +34949,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32246,7 +34964,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32265,7 +34983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32280,7 +34998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32295,7 +35013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32342,7 +35060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32357,7 +35075,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32372,7 +35090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32387,7 +35105,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32410,7 +35146,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32425,7 +35161,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32440,7 +35176,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32455,7 +35191,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32474,7 +35210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32489,7 +35225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32504,7 +35240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32551,7 +35287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32566,7 +35302,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -32581,7 +35317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32596,7 +35332,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32619,7 +35373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32634,7 +35388,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32649,7 +35403,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32664,7 +35418,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32695,7 +35449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32710,7 +35464,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32741,7 +35495,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -32757,7 +35511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32772,7 +35526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32787,7 +35541,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32818,7 +35572,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32833,7 +35587,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32848,7 +35602,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -32864,7 +35618,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32879,7 +35633,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -32894,7 +35648,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -32914,7 +35668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32929,7 +35683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32944,7 +35698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32991,7 +35745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33006,7 +35760,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33021,7 +35775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33036,7 +35790,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33092,7 +35864,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33123,7 +35895,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33138,7 +35910,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33169,7 +35941,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -33185,7 +35957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33200,7 +35972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33215,7 +35987,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33246,7 +36018,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33261,7 +36033,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33276,7 +36048,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false @@ -33292,7 +36064,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33307,7 +36079,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33322,7 +36094,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -33342,7 +36114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33357,7 +36129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33372,7 +36144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33419,7 +36191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33434,7 +36206,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33449,7 +36221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33464,7 +36236,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33488,7 +36278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33503,7 +36293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33518,7 +36308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33565,7 +36355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33580,7 +36370,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33595,7 +36385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33610,7 +36400,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33708,7 +36516,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33717,7 +36525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33726,7 +36534,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33765,7 +36573,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -33775,7 +36583,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33784,7 +36592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33793,7 +36601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33802,7 +36610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33811,7 +36619,7 @@ "Type": { "Namespace": "System", "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33820,7 +36628,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33829,7 +36637,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33838,7 +36646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33847,7 +36655,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33856,7 +36664,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33865,7 +36673,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -33875,7 +36683,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33884,7 +36692,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33893,7 +36701,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33902,7 +36710,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -33915,7 +36723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33924,7 +36732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33933,7 +36741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33962,7 +36770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33971,7 +36779,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -33980,7 +36788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33989,7 +36797,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -34007,7 +36827,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34022,7 +36842,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34037,7 +36857,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34052,7 +36872,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34071,7 +36891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34086,7 +36906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34101,7 +36921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34148,7 +36968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34163,7 +36983,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34178,7 +36998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34193,7 +37013,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34216,7 +37054,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34231,7 +37069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34246,7 +37084,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34261,7 +37099,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34280,7 +37118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34295,7 +37133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34310,7 +37148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34357,7 +37195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34372,7 +37210,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34387,7 +37225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34402,7 +37240,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34425,7 +37281,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34440,7 +37296,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34455,7 +37311,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34470,7 +37326,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -34486,7 +37342,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34501,7 +37357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34516,7 +37372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34531,7 +37387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34546,7 +37402,7 @@ "Type": { "Namespace": "System", "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34561,7 +37417,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34576,7 +37432,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34591,7 +37447,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34606,7 +37462,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34621,7 +37477,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34636,7 +37492,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -34652,7 +37508,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34667,7 +37523,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34686,7 +37542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34701,7 +37557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34716,7 +37572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34763,7 +37619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34778,7 +37634,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -34793,7 +37649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34808,7 +37664,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34864,7 +37738,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -34880,7 +37754,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34895,7 +37769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34910,7 +37784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34925,7 +37799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34940,7 +37814,7 @@ "Type": { "Namespace": "System", "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34955,7 +37829,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34970,7 +37844,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -34985,7 +37859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35000,7 +37874,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35015,7 +37889,7 @@ "Type": { "Namespace": "System", "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35030,7 +37904,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -35046,7 +37920,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35061,7 +37935,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -35080,7 +37954,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35095,7 +37969,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35110,7 +37984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35157,7 +38031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35172,7 +38046,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -35187,7 +38061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35202,7 +38076,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35226,7 +38118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35241,7 +38133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35256,7 +38148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35303,7 +38195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35318,7 +38210,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -35333,7 +38225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35348,7 +38240,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35408,7 +38318,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDbIormConfig]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDbIormConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDbIormConfig, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDbIormConfig, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDbIormConfig" ] @@ -35426,7 +38336,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -35434,7 +38344,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.INsgCidr]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.INsgCidr]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.INsgCidr, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.INsgCidr, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.INsgCidr" ] @@ -35452,7 +38362,7 @@ "System.Collections.Generic.List`1[System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String" ] @@ -35460,7 +38370,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -35468,7 +38378,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -35476,12 +38386,12 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Double]": { "Namespace": "System", "Name": "System.Nullable`1[System.Double]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Double" ] @@ -35489,7 +38399,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -35497,7 +38407,7 @@ "System.Nullable`1[System.Single]": { "Namespace": "System", "Name": "System.Nullable`1[System.Single]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Single" ] @@ -35639,17 +38549,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -35657,38 +38567,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.ICustomerContact]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.ICustomerContact]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.ICustomerContact, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.ICustomerContact, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.ICustomerContact" ] @@ -35704,7 +38614,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IProfileType]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IProfileType]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IProfileType, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IProfileType, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IProfileType" ] @@ -35728,7 +38638,7 @@ "System.Collections.Generic.List`1[System.Int32]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.Int32]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -35736,12 +38646,12 @@ "System.Security.SecureString": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDayOfWeek]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDayOfWeek]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDayOfWeek, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDayOfWeek, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IDayOfWeek" ] @@ -35757,7 +38667,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IMonth]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IMonth]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IMonth, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IMonth, Az.Oracle.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.Oracle.Models.IMonth" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.PostgreSql.json b/tools/Tools.Common/SerializedCmdlets/Az.PostgreSql.json index 7625b94cfb03..67360403a013 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.PostgreSql.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.PostgreSql.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.PostgreSql", - "ModuleVersion": "1.2.0", + "ModuleVersion": "1.3.0", "Cmdlets": [ { "VerbName": "Get", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -40,7 +40,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -49,7 +49,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -58,7 +58,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -67,7 +67,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -77,7 +77,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -102,7 +102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -111,7 +111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -120,7 +120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -130,7 +130,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -140,7 +140,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -149,7 +149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -158,7 +158,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -176,7 +188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -191,7 +203,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -206,7 +218,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -221,7 +233,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -241,7 +253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -256,7 +268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -271,7 +283,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -287,7 +299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -303,7 +315,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -318,7 +330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -333,7 +345,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -353,7 +383,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -368,7 +398,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -383,7 +413,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -403,7 +433,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -418,7 +448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -433,7 +463,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -449,7 +479,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -465,7 +495,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -480,7 +510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -495,7 +525,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -515,7 +563,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -546,7 +594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -561,7 +609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -576,7 +624,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -592,7 +640,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -608,7 +656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -623,7 +671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -638,7 +686,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -662,7 +728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -677,7 +743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -692,7 +758,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -708,7 +774,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -724,7 +790,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -739,7 +805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -754,7 +820,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -781,7 +865,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -794,7 +878,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -806,7 +890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -815,7 +899,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -824,7 +908,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -833,7 +917,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -874,7 +958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -883,7 +967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -892,7 +976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -902,7 +986,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -912,7 +996,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -921,7 +1005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -930,7 +1014,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -945,7 +1041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -964,7 +1060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -979,7 +1075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -994,7 +1090,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1010,7 +1106,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1026,7 +1122,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1041,7 +1137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1056,7 +1152,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1079,7 +1193,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1094,7 +1208,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1109,7 +1223,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1124,7 +1238,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1143,7 +1257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1158,7 +1272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1173,7 +1287,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1189,7 +1303,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1205,7 +1319,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1220,7 +1334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1235,7 +1349,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1255,7 +1387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -1298,7 +1430,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1317,7 +1449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1332,7 +1464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1347,7 +1479,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1363,7 +1495,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1379,7 +1511,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1394,7 +1526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1409,7 +1541,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1436,7 +1586,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -1456,7 +1606,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1465,7 +1615,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1474,7 +1624,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1483,7 +1633,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1493,7 +1643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -1518,7 +1668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1527,7 +1677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1536,7 +1686,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1546,7 +1696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1556,7 +1706,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1565,7 +1715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1574,7 +1724,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1592,7 +1754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1607,7 +1769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1622,7 +1784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1637,7 +1799,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1657,7 +1819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1672,7 +1834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1687,7 +1849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1703,7 +1865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1719,7 +1881,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1734,7 +1896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1749,7 +1911,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1769,7 +1949,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1784,7 +1964,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1799,7 +1979,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1819,7 +1999,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1834,7 +2014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1849,7 +2029,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1865,7 +2045,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1881,7 +2061,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1896,7 +2076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1911,7 +2091,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1931,7 +2129,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -1962,7 +2160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1977,7 +2175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1992,7 +2190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2008,7 +2206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2024,7 +2222,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2039,7 +2237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2054,7 +2252,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2078,7 +2294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2093,7 +2309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2108,7 +2324,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2124,7 +2340,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2140,7 +2356,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2155,7 +2371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2170,7 +2386,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2197,7 +2431,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertiesTag": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -2251,7 +2485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2260,7 +2494,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2269,7 +2503,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2279,7 +2513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -2304,7 +2538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2313,7 +2547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2322,7 +2556,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2332,7 +2566,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2342,7 +2576,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2351,7 +2585,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2360,7 +2594,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2378,7 +2624,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2393,7 +2639,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2408,7 +2654,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2428,7 +2674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2443,7 +2689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2458,7 +2704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2474,7 +2720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2490,7 +2736,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2505,7 +2751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2520,7 +2766,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2540,7 +2804,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2555,7 +2819,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2575,7 +2839,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2590,7 +2854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2605,7 +2869,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2621,7 +2885,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2637,7 +2901,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2652,7 +2916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2667,7 +2931,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2687,7 +2969,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2707,7 +2989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2722,7 +3004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2737,7 +3019,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2753,7 +3035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2769,7 +3051,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2784,7 +3066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2799,7 +3081,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2819,7 +3119,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -2850,7 +3150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2865,7 +3165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2880,7 +3180,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2896,7 +3196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2912,7 +3212,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2927,7 +3227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2942,7 +3242,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2966,7 +3284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2981,7 +3299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2996,7 +3314,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3012,7 +3330,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3028,7 +3346,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3043,7 +3361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3058,7 +3376,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3085,7 +3421,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IConfigurationAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IConfigurationAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IConfigurationAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -3115,7 +3451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3124,7 +3460,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3133,7 +3469,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3142,7 +3478,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3152,7 +3488,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -3177,7 +3513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3186,7 +3522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3195,7 +3531,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3205,7 +3541,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3215,7 +3551,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3224,7 +3560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3233,7 +3569,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3251,7 +3599,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3266,7 +3614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3281,7 +3629,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3296,7 +3644,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3316,7 +3664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3331,7 +3679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3346,7 +3694,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3362,7 +3710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3378,7 +3726,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3393,7 +3741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3408,7 +3756,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3428,7 +3794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3443,7 +3809,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3458,7 +3824,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3478,7 +3844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3493,7 +3859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3508,7 +3874,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3524,7 +3890,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3540,7 +3906,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3555,7 +3921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3570,7 +3936,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3590,7 +3974,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -3621,7 +4005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3636,7 +4020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3651,7 +4035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3667,7 +4051,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3683,7 +4067,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3698,7 +4082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3713,7 +4097,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3737,7 +4139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3752,7 +4154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3767,7 +4169,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3783,7 +4185,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3799,7 +4201,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3814,7 +4216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3829,7 +4231,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3856,7 +4276,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -3869,7 +4289,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3881,7 +4301,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3890,7 +4310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3899,7 +4319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3908,7 +4328,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertiesTag": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -3959,7 +4379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3968,7 +4388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3977,7 +4397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3987,7 +4407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3997,7 +4417,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4006,7 +4426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4015,7 +4435,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4030,7 +4462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4049,7 +4481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4064,7 +4496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4079,7 +4511,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4095,7 +4527,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4111,7 +4543,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4126,7 +4558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4141,7 +4573,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4164,7 +4614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4179,7 +4629,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4194,7 +4644,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4209,7 +4659,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4228,7 +4678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4243,7 +4693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4258,7 +4708,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4274,7 +4724,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4290,7 +4740,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4305,7 +4755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4320,7 +4770,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4340,7 +4808,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertiesTag": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -4393,7 +4861,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4412,7 +4880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4427,7 +4895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4442,7 +4910,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4458,7 +4926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4474,7 +4942,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4489,7 +4957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4504,7 +4972,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4531,7 +5017,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IDatabaseAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IDatabaseAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IDatabaseAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -4557,7 +5043,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4566,7 +5052,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4575,7 +5061,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4584,7 +5070,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4594,7 +5080,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -4619,7 +5105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4628,7 +5114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4637,7 +5123,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4647,7 +5133,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4657,7 +5143,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4666,7 +5152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4675,7 +5161,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4693,7 +5191,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4708,7 +5206,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4723,7 +5221,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4738,7 +5236,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4758,7 +5256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4773,7 +5271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4788,7 +5286,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4804,7 +5302,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4820,7 +5318,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4835,7 +5333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4850,7 +5348,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4870,7 +5386,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4885,7 +5401,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4900,7 +5416,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4920,7 +5436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4935,7 +5451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4950,7 +5466,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4966,7 +5482,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4982,7 +5498,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4997,7 +5513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5012,7 +5528,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5032,7 +5566,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -5063,7 +5597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5078,7 +5612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5093,7 +5627,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5109,7 +5643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5125,7 +5659,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5140,7 +5674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5155,7 +5689,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5179,7 +5731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5194,7 +5746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5209,7 +5761,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5225,7 +5777,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5241,7 +5793,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5256,7 +5808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5271,7 +5823,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5298,7 +5868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFirewallRuleAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFirewallRuleAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFirewallRuleAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -5324,7 +5894,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5333,7 +5903,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5342,7 +5912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5351,7 +5921,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5361,7 +5931,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -5386,7 +5956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5395,7 +5965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5404,7 +5974,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5414,7 +5984,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5424,7 +5994,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5433,7 +6003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5442,7 +6012,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5460,7 +6042,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5475,7 +6057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5490,7 +6072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5505,7 +6087,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5525,7 +6107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5540,7 +6122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5555,7 +6137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5571,7 +6153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5587,7 +6169,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5602,7 +6184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5617,7 +6199,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5637,7 +6237,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5652,7 +6252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5667,7 +6267,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5687,7 +6287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5702,7 +6302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5717,7 +6317,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5733,7 +6333,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5749,7 +6349,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5764,7 +6364,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5779,7 +6379,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5799,7 +6417,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -5830,7 +6448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5845,7 +6463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5860,7 +6478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5876,7 +6494,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5892,7 +6510,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5907,7 +6525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5922,7 +6540,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5946,7 +6582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5961,7 +6597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5976,7 +6612,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5992,7 +6628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6008,7 +6644,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6023,7 +6659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6038,7 +6674,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6065,7 +6719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.ICapabilityProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.ICapabilityProperties, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.ICapabilityProperties, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedFlexibleServerEdition": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability[]", "SupportedHyperscaleNodeEdition": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability[]", @@ -6087,7 +6741,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6096,7 +6750,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6110,7 +6764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6119,7 +6773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6128,7 +6782,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6138,7 +6792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6148,7 +6802,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6157,7 +6811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6166,7 +6820,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6181,7 +6847,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6196,7 +6862,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6216,7 +6882,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6231,7 +6897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6246,7 +6912,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6262,7 +6928,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6278,7 +6944,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6293,7 +6959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6308,7 +6974,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6335,7 +7019,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -6376,7 +7060,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6385,7 +7069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6394,7 +7078,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6408,7 +7092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6417,7 +7101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6426,7 +7110,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6436,7 +7120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6446,7 +7130,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6455,7 +7139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6464,7 +7148,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6479,7 +7175,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6494,7 +7190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6509,7 +7205,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6529,7 +7225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6544,7 +7240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6559,7 +7255,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6575,7 +7271,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6591,7 +7287,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6606,7 +7302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6621,7 +7317,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6648,7 +7362,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -6692,7 +7406,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6701,7 +7415,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6710,7 +7424,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6720,7 +7434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -6745,7 +7459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6754,7 +7468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6763,7 +7477,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6773,7 +7487,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6783,7 +7497,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6792,7 +7506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6801,7 +7515,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6819,7 +7545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6834,7 +7560,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6849,7 +7575,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6869,7 +7595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6884,7 +7610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6899,7 +7625,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6915,7 +7641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6931,7 +7657,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6946,7 +7672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6961,7 +7687,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6981,7 +7725,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6996,7 +7740,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7016,7 +7760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7031,7 +7775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7046,7 +7790,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7062,7 +7806,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7078,7 +7822,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7093,7 +7837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7108,7 +7852,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7128,7 +7890,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7148,7 +7910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7163,7 +7925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7178,7 +7940,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7194,7 +7956,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7210,7 +7972,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7225,7 +7987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7240,7 +8002,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7260,7 +8040,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -7291,7 +8071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7306,7 +8086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7321,7 +8101,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7337,7 +8117,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7353,7 +8133,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7368,7 +8148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7383,7 +8163,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7407,7 +8205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7422,7 +8220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7437,7 +8235,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7453,7 +8251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7469,7 +8267,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7484,7 +8282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7499,7 +8297,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7526,7 +8342,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -7547,7 +8363,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7556,7 +8372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7565,7 +8381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7574,7 +8390,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7584,7 +8400,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -7609,7 +8425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7618,7 +8434,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7627,7 +8443,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7637,7 +8453,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7647,7 +8463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7656,7 +8472,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7665,7 +8481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7674,7 +8490,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7692,7 +8520,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7707,7 +8535,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7722,7 +8550,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7737,7 +8565,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7757,7 +8585,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7772,7 +8600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7787,7 +8615,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7803,7 +8631,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7819,7 +8647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7834,7 +8662,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7849,7 +8677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7864,7 +8692,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7884,7 +8730,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7899,7 +8745,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7914,7 +8760,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -7934,7 +8780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7949,7 +8795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7964,7 +8810,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7980,7 +8826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7996,7 +8842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8011,7 +8857,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8026,7 +8872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8041,7 +8887,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8061,7 +8925,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -8092,7 +8956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8107,7 +8971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8122,7 +8986,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8138,7 +9002,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8154,7 +9018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8169,7 +9033,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8184,7 +9048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8199,7 +9063,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8223,7 +9105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8238,7 +9120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8253,7 +9135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8269,7 +9151,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8285,7 +9167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8300,7 +9182,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8315,7 +9197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8330,7 +9212,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8357,7 +9257,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -8374,7 +9274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8383,7 +9283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8395,7 +9295,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8404,7 +9304,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8413,7 +9313,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8422,7 +9322,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8431,7 +9331,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8440,7 +9340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8453,7 +9353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8462,7 +9362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8471,7 +9371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8480,7 +9380,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8490,7 +9390,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8500,7 +9400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8509,7 +9409,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8518,7 +9418,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8527,7 +9427,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8542,7 +9454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8557,7 +9469,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8575,7 +9487,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8590,7 +9502,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8609,7 +9521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8624,7 +9536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8639,7 +9551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8654,7 +9566,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8670,7 +9582,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8686,7 +9598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8701,7 +9613,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8716,7 +9628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8731,7 +9643,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8751,7 +9681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8766,7 +9696,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8781,7 +9711,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8796,7 +9726,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8814,7 +9744,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8829,7 +9759,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8848,7 +9778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8863,7 +9793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8878,7 +9808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8893,7 +9823,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8909,7 +9839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8925,7 +9855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8940,7 +9870,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8955,7 +9885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8970,7 +9900,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8990,7 +9938,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9005,7 +9953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9020,7 +9968,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9038,7 +9986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9053,7 +10001,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9072,7 +10020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9087,7 +10035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9102,7 +10050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9117,7 +10065,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9133,7 +10081,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9149,7 +10097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9164,7 +10112,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9179,7 +10127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9194,7 +10142,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9214,7 +10180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9229,7 +10195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9244,7 +10210,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9262,7 +10228,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9277,7 +10243,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9296,7 +10262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9311,7 +10277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9326,7 +10292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9341,7 +10307,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9357,7 +10323,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9373,7 +10339,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9388,7 +10354,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9403,7 +10369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9418,7 +10384,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9445,7 +10429,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertiesTag": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -9499,7 +10483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9508,7 +10492,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9517,7 +10501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9526,7 +10510,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9535,7 +10519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9544,7 +10528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9553,7 +10537,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9562,7 +10546,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9571,7 +10555,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9580,7 +10564,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9589,7 +10573,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9598,7 +10582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9607,7 +10591,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9616,7 +10600,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9625,7 +10609,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9634,7 +10618,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9643,7 +10627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9652,7 +10636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9661,7 +10645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9670,7 +10654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9683,7 +10667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9692,7 +10676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9701,7 +10685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9710,7 +10694,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9720,7 +10704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9730,7 +10714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9739,7 +10723,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9748,7 +10732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9757,7 +10741,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9775,7 +10771,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9790,7 +10786,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9805,7 +10801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9820,7 +10816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9835,7 +10831,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9850,7 +10846,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9865,7 +10861,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9880,7 +10876,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9895,7 +10891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9910,7 +10906,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9925,7 +10921,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9940,7 +10936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9955,7 +10951,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9970,7 +10966,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9985,7 +10981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10000,7 +10996,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10015,7 +11011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10030,7 +11026,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10045,7 +11041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10060,7 +11056,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10079,7 +11075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10094,7 +11090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10109,7 +11105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10124,7 +11120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10140,7 +11136,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10156,7 +11152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10171,7 +11167,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10186,7 +11182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10201,7 +11197,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10228,7 +11242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IDatabaseAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IDatabaseAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IDatabaseAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -10254,7 +11268,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10263,7 +11277,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10272,7 +11286,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10281,7 +11295,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10290,7 +11304,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -10311,7 +11325,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10320,7 +11334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10333,7 +11347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10342,7 +11356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10351,7 +11365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10360,7 +11374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10370,7 +11384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10380,7 +11394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10389,7 +11403,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10398,7 +11412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10407,7 +11421,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10425,7 +11451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10440,7 +11466,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10455,7 +11481,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10470,7 +11496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10485,7 +11511,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10500,7 +11526,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10519,7 +11545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10534,7 +11560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10549,7 +11575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10564,7 +11590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10580,7 +11606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10596,7 +11622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10611,7 +11637,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10626,7 +11652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10641,7 +11667,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10661,7 +11705,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -10688,7 +11732,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10703,7 +11747,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10722,7 +11766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10737,7 +11781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10752,7 +11796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10767,7 +11811,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10783,7 +11827,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10799,7 +11843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10814,7 +11858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10829,7 +11873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10844,7 +11888,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10864,7 +11926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10879,7 +11941,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10898,7 +11960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10913,7 +11975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10928,7 +11990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10943,7 +12005,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10959,7 +12021,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10975,7 +12037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10990,7 +12052,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11005,7 +12067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11020,7 +12082,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11047,7 +12127,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -11064,7 +12144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11073,7 +12153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11085,7 +12165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11094,7 +12174,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11103,7 +12183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11112,7 +12192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11121,7 +12201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11130,7 +12210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11143,7 +12223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11152,7 +12232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11161,7 +12241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11170,7 +12250,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11180,7 +12260,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11190,7 +12270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11199,7 +12279,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11208,7 +12288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11217,7 +12297,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11232,7 +12324,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11247,7 +12339,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11265,7 +12357,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11280,7 +12372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11299,7 +12391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11314,7 +12406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11329,7 +12421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11344,7 +12436,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11360,7 +12452,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11376,7 +12468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11391,7 +12483,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11406,7 +12498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11421,7 +12513,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11441,7 +12551,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11456,7 +12566,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11471,7 +12581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11486,7 +12596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11504,7 +12614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11519,7 +12629,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11538,7 +12648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11553,7 +12663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11568,7 +12678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11583,7 +12693,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11599,7 +12709,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11615,7 +12725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11630,7 +12740,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11645,7 +12755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11660,7 +12770,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11680,7 +12808,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11695,7 +12823,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11710,7 +12838,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11728,7 +12856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11743,7 +12871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11762,7 +12890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11777,7 +12905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11792,7 +12920,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11807,7 +12935,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11823,7 +12951,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11839,7 +12967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11854,7 +12982,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11869,7 +12997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11884,7 +13012,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11904,7 +13050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11919,7 +13065,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11934,7 +13080,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11952,7 +13098,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11967,7 +13113,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11986,7 +13132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12001,7 +13147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12016,7 +13162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12031,7 +13177,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12047,7 +13193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12063,7 +13209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12078,7 +13224,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12093,7 +13239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12108,7 +13254,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12135,7 +13299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -12180,7 +13344,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12189,7 +13353,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12198,7 +13362,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12210,7 +13374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -12247,7 +13411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12256,7 +13420,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12269,7 +13433,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12278,7 +13442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12287,7 +13451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12296,7 +13460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12306,7 +13470,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12316,7 +13480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12325,7 +13489,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12334,7 +13498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12343,7 +13507,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12362,7 +13538,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12377,7 +13553,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12392,7 +13568,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12410,7 +13586,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -12453,7 +13629,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12468,7 +13644,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12487,7 +13663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12502,7 +13678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12517,7 +13693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12532,7 +13708,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12548,7 +13724,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12564,7 +13740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12579,7 +13755,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12594,7 +13770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12609,7 +13785,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12636,7 +13830,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -12680,7 +13874,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12689,7 +13883,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12698,7 +13892,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12707,7 +13901,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12716,7 +13910,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12725,7 +13919,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12734,7 +13928,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12743,7 +13937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12752,7 +13946,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12761,7 +13955,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12770,7 +13964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12779,7 +13973,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12788,7 +13982,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12797,7 +13991,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12806,7 +14000,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12819,7 +14013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12828,7 +14022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12837,7 +14031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12846,7 +14040,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12856,7 +14050,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12866,7 +14060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12875,7 +14069,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12884,7 +14078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12893,7 +14087,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12911,7 +14117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12926,7 +14132,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12941,7 +14147,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12956,7 +14162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12971,7 +14177,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12986,7 +14192,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13001,7 +14207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13016,7 +14222,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13031,7 +14237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13046,7 +14252,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13061,7 +14267,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13076,7 +14282,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13091,7 +14297,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13106,7 +14312,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13121,7 +14327,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13140,7 +14346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13155,7 +14361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13170,7 +14376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13185,7 +14391,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13201,7 +14407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13217,7 +14423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13232,7 +14438,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13247,7 +14453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13262,7 +14468,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13289,7 +14513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -13310,7 +14534,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13319,7 +14543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13328,7 +14552,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13337,7 +14561,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13346,7 +14570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13355,7 +14579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13368,7 +14592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13377,7 +14601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13386,7 +14610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13395,7 +14619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13405,7 +14629,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13415,7 +14639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13424,7 +14648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13433,7 +14657,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13442,7 +14666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13451,7 +14675,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13469,7 +14705,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13484,7 +14720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13499,7 +14735,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13514,7 +14750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13529,7 +14765,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13544,7 +14780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13563,7 +14799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13578,7 +14814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13593,7 +14829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13608,7 +14844,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13624,7 +14860,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13640,7 +14876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13655,7 +14891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13670,7 +14906,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13685,7 +14921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13700,7 +14936,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13727,7 +14981,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -13743,7 +14997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13752,7 +15006,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13761,7 +15015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13770,7 +15024,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13779,7 +15033,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -13804,7 +15058,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13813,7 +15067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13822,7 +15076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13831,7 +15085,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13841,7 +15095,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13851,7 +15105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13860,7 +15114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13869,7 +15123,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13878,7 +15132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13887,7 +15141,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13905,7 +15171,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13920,7 +15186,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13935,7 +15201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13950,7 +15216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13969,7 +15235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13984,7 +15250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13999,7 +15265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14014,7 +15280,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14030,7 +15296,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14046,7 +15312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14061,7 +15327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14076,7 +15342,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14091,7 +15357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14106,7 +15372,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14126,7 +15410,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -14157,7 +15441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14172,7 +15456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14187,7 +15471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14202,7 +15486,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14218,7 +15502,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14234,7 +15518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14249,7 +15533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14264,7 +15548,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14279,7 +15563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14294,7 +15578,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14318,7 +15620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14333,7 +15635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14348,7 +15650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14363,7 +15665,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14379,7 +15681,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14395,7 +15697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14410,7 +15712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14425,7 +15727,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14440,7 +15742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14455,7 +15757,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14482,7 +15802,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -14498,7 +15818,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14507,7 +15827,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14516,7 +15836,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14525,7 +15845,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -14550,7 +15870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14559,7 +15879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14568,7 +15888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14577,7 +15897,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14587,7 +15907,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14597,7 +15917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14606,7 +15926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14615,7 +15935,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14624,7 +15944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14633,7 +15953,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -14651,7 +15983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14666,7 +15998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14681,7 +16013,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14700,7 +16032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14715,7 +16047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14730,7 +16062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14745,7 +16077,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14761,7 +16093,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14777,7 +16109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14792,7 +16124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14807,7 +16139,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14822,7 +16154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14837,7 +16169,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14857,7 +16207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -14888,7 +16238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14903,7 +16253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14918,7 +16268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14933,7 +16283,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14949,7 +16299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14965,7 +16315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14980,7 +16330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14995,7 +16345,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15010,7 +16360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15025,7 +16375,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15049,7 +16417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15064,7 +16432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15079,7 +16447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15094,7 +16462,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15110,7 +16478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15126,7 +16494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15141,7 +16509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15156,7 +16524,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15171,7 +16539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15186,7 +16554,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15213,7 +16599,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -15229,7 +16615,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15238,7 +16624,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15247,7 +16633,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15256,7 +16642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15265,7 +16651,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -15290,7 +16676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15299,7 +16685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15308,7 +16694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15317,7 +16703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15327,7 +16713,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15337,7 +16723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15346,7 +16732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15355,7 +16741,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15364,7 +16750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15373,7 +16759,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15391,7 +16789,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15406,7 +16804,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15421,7 +16819,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15436,7 +16834,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15455,7 +16853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15470,7 +16868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15485,7 +16883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15500,7 +16898,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15516,7 +16914,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15532,7 +16930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15547,7 +16945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15562,7 +16960,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15577,7 +16975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15592,7 +16990,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15612,7 +17028,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -15643,7 +17059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15658,7 +17074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15673,7 +17089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15688,7 +17104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15704,7 +17120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15720,7 +17136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15735,7 +17151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15750,7 +17166,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15765,7 +17181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15780,7 +17196,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15804,7 +17238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15819,7 +17253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15834,7 +17268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15849,7 +17283,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15865,7 +17299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15881,7 +17315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15896,7 +17330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15911,7 +17345,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15926,7 +17360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15941,7 +17375,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15968,7 +17420,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -15984,7 +17436,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15993,7 +17445,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16002,7 +17454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16011,7 +17463,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16020,7 +17472,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -16045,7 +17497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16054,7 +17506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16063,7 +17515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16072,7 +17524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16082,7 +17534,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16092,7 +17544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16101,7 +17553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16110,7 +17562,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16119,7 +17571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16128,7 +17580,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -16146,7 +17610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16161,7 +17625,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16176,7 +17640,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16191,7 +17655,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16210,7 +17674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16225,7 +17689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16240,7 +17704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16255,7 +17719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16271,7 +17735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16287,7 +17751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16302,7 +17766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16317,7 +17781,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16332,7 +17796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16347,7 +17811,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16367,7 +17849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -16398,7 +17880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16413,7 +17895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16428,7 +17910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16443,7 +17925,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16459,7 +17941,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16475,7 +17957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16490,7 +17972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16505,7 +17987,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16520,7 +18002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16535,7 +18017,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16559,7 +18059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16574,7 +18074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16589,7 +18089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16604,7 +18104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16620,7 +18120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16636,7 +18136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16651,7 +18151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16666,7 +18166,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16681,7 +18181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16696,7 +18196,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16723,7 +18241,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -16739,7 +18257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16748,7 +18266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16757,7 +18275,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16766,7 +18284,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -16791,7 +18309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16800,7 +18318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16809,7 +18327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16818,7 +18336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16828,7 +18346,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16838,7 +18356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16847,7 +18365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16856,7 +18374,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16865,7 +18383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16874,7 +18392,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -16892,7 +18422,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16907,7 +18437,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16922,7 +18452,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -16941,7 +18471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16956,7 +18486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16971,7 +18501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16986,7 +18516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17002,7 +18532,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17018,7 +18548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17033,7 +18563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17048,7 +18578,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17063,7 +18593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17078,7 +18608,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17098,7 +18646,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -17129,7 +18677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17144,7 +18692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17159,7 +18707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17174,7 +18722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17190,7 +18738,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17206,7 +18754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17221,7 +18769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17236,7 +18784,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17251,7 +18799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17266,7 +18814,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17290,7 +18856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17305,7 +18871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17320,7 +18886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17335,7 +18901,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17351,7 +18917,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17367,7 +18933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17382,7 +18948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17397,7 +18963,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17412,7 +18978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17427,7 +18993,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17454,7 +19038,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -17470,7 +19054,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17479,7 +19063,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17488,7 +19072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17497,7 +19081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17506,7 +19090,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -17531,7 +19115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17540,7 +19124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17549,7 +19133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17558,7 +19142,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17568,7 +19152,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17578,7 +19162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17587,7 +19171,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17596,7 +19180,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17605,7 +19189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17614,7 +19198,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -17632,7 +19228,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17647,7 +19243,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17662,7 +19258,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17677,7 +19273,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -17696,7 +19292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17711,7 +19307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17726,7 +19322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17741,7 +19337,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17757,7 +19353,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17773,7 +19369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17788,7 +19384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17803,7 +19399,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -17818,7 +19414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17833,7 +19429,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17853,7 +19467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -17884,7 +19498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17899,7 +19513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17914,7 +19528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17929,7 +19543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17945,7 +19559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17961,7 +19575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17976,7 +19590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17991,7 +19605,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18006,7 +19620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18021,7 +19635,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18045,7 +19677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18060,7 +19692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18075,7 +19707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18090,7 +19722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18106,7 +19738,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18122,7 +19754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18137,7 +19769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18152,7 +19784,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18167,7 +19799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18182,7 +19814,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18209,7 +19859,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -18225,7 +19875,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18234,7 +19884,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18243,7 +19893,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18252,7 +19902,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -18273,7 +19923,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestartWithFailover": "System.Nullable`1[System.Boolean]", "FailoverMode": "System.String" @@ -18286,7 +19936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18295,7 +19945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18308,7 +19958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18317,7 +19967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18326,7 +19976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18335,7 +19985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18345,7 +19995,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18355,7 +20005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18364,7 +20014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18373,7 +20023,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18382,7 +20032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18391,7 +20041,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -18409,7 +20071,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18424,7 +20086,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18439,7 +20101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18454,7 +20116,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18469,7 +20131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18488,7 +20150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18503,7 +20165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18518,7 +20180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18533,7 +20195,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18549,7 +20211,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18565,7 +20227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18580,7 +20242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18595,7 +20257,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18610,7 +20272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18625,7 +20287,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18648,7 +20328,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18663,7 +20343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18678,7 +20358,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18693,7 +20373,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestartWithFailover": "System.Nullable`1[System.Boolean]", "FailoverMode": "System.String" @@ -18716,7 +20396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18731,7 +20411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18746,7 +20426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18761,7 +20441,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18777,7 +20457,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18793,7 +20473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18808,7 +20488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18823,7 +20503,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -18838,7 +20518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18853,7 +20533,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18873,7 +20571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -18900,7 +20598,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -18915,7 +20613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18934,7 +20632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18949,7 +20647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18964,7 +20662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18979,7 +20677,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18995,7 +20693,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19011,7 +20709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19026,7 +20724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19041,7 +20739,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19056,7 +20754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19071,7 +20769,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19091,7 +20807,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -19118,7 +20834,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IRestartParameter, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestartWithFailover": "System.Nullable`1[System.Boolean]", "FailoverMode": "System.String" @@ -19141,7 +20857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19156,7 +20872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19171,7 +20887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19186,7 +20902,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19202,7 +20918,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19218,7 +20934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19233,7 +20949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19248,7 +20964,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19263,7 +20979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19278,7 +20994,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19302,7 +21036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19317,7 +21051,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19332,7 +21066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19347,7 +21081,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19363,7 +21097,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19379,7 +21113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19394,7 +21128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19409,7 +21143,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19424,7 +21158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19439,7 +21173,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19466,7 +21218,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -19482,7 +21234,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19491,7 +21243,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19500,7 +21252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19509,7 +21261,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -19534,7 +21286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19543,7 +21295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19552,7 +21304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19561,7 +21313,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19571,7 +21323,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19581,7 +21333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19590,7 +21342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19599,7 +21351,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19608,7 +21360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19617,7 +21369,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -19635,7 +21399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19650,7 +21414,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19665,7 +21429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -19684,7 +21448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19699,7 +21463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19714,7 +21478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19729,7 +21493,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19745,7 +21509,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19761,7 +21525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19776,7 +21540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19791,7 +21555,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19806,7 +21570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19821,7 +21585,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19841,7 +21623,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -19872,7 +21654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19887,7 +21669,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19902,7 +21684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19917,7 +21699,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19933,7 +21715,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19949,7 +21731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19964,7 +21746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19979,7 +21761,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -19994,7 +21776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20009,7 +21791,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20033,7 +21833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20048,7 +21848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20063,7 +21863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20078,7 +21878,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20094,7 +21894,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20110,7 +21910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20125,7 +21925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20140,7 +21940,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20155,7 +21955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20170,7 +21970,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20197,7 +22015,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertiesTag": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -20251,7 +22069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20260,7 +22078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20269,7 +22087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20278,7 +22096,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20287,7 +22105,34 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UseGeoRestore", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20296,7 +22141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20305,7 +22150,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20314,7 +22159,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20327,7 +22172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20336,7 +22181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20345,7 +22190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20354,7 +22199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20364,7 +22209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20374,7 +22219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20383,7 +22228,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20392,7 +22237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20401,7 +22246,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -20419,7 +22276,294 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceServerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RestorePointInTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GeoRestore", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "UseGeoRestore", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20434,7 +22578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20449,7 +22593,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20464,7 +22608,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20479,7 +22623,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20488,13 +22632,177 @@ "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "PointInTimeRestore", + "Parameters": [ { "ParameterMetadata": { "Name": "Zone", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20509,7 +22817,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20524,7 +22832,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20533,6 +22841,84 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ServerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceServerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RestorePointInTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -20543,7 +22929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20558,7 +22944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20573,7 +22959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20588,7 +22974,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20604,7 +22990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20620,7 +23006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20635,7 +23021,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20650,7 +23036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20665,7 +23051,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20692,7 +23096,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -20736,7 +23140,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20745,7 +23149,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20754,7 +23158,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20763,7 +23167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -20800,7 +23204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20809,7 +23213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20818,7 +23222,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20827,7 +23231,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20836,7 +23240,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20845,7 +23249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20858,7 +23262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20867,7 +23271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20876,7 +23280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20885,7 +23289,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20895,7 +23299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20905,7 +23309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20914,7 +23318,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -20923,7 +23327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20932,7 +23336,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -20950,7 +23366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20965,7 +23381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20980,7 +23396,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -20995,7 +23411,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -21038,7 +23454,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21053,7 +23469,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21068,7 +23484,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21087,7 +23503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21102,7 +23518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21117,7 +23533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21132,7 +23548,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21148,7 +23564,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21164,7 +23580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21179,7 +23595,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21194,7 +23610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21209,7 +23625,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21229,7 +23663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21247,7 +23681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21262,7 +23696,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21277,7 +23711,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21292,7 +23726,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -21335,7 +23769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21350,7 +23784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21365,7 +23799,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21384,7 +23818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21399,7 +23833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21414,7 +23848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21429,7 +23863,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21445,7 +23879,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21461,7 +23895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21476,7 +23910,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21491,7 +23925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21506,7 +23940,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21526,7 +23978,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21541,7 +23993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21559,7 +24011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21574,7 +24026,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21589,7 +24041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21604,7 +24056,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -21647,7 +24099,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21662,7 +24114,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21677,7 +24129,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21696,7 +24148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21711,7 +24163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21726,7 +24178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21741,7 +24193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21757,7 +24209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21773,7 +24225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21788,7 +24240,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21803,7 +24255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21818,7 +24270,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21845,7 +24315,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -21861,7 +24331,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21870,7 +24340,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21879,7 +24349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -21888,7 +24358,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -21913,7 +24383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21922,7 +24392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21931,7 +24401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21940,7 +24410,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21950,7 +24420,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21960,7 +24430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21969,7 +24439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21978,7 +24448,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -21987,7 +24457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21996,7 +24466,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -22014,7 +24496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22029,7 +24511,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22044,7 +24526,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22063,7 +24545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22078,7 +24560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22093,7 +24575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22108,7 +24590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22124,7 +24606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22140,7 +24622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22155,7 +24637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22170,7 +24652,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22185,7 +24667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22200,7 +24682,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22220,7 +24720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -22251,7 +24751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22266,7 +24766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22281,7 +24781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22296,7 +24796,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22312,7 +24812,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22328,7 +24828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22343,7 +24843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22358,7 +24858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22373,7 +24873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22388,7 +24888,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22412,7 +24930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22427,7 +24945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22442,7 +24960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22457,7 +24975,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22473,7 +24991,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22489,7 +25007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22504,7 +25022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22519,7 +25037,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22534,7 +25052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22549,7 +25067,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22576,7 +25112,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -22592,7 +25128,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22601,7 +25137,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22610,7 +25146,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22619,7 +25155,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -22644,7 +25180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22653,7 +25189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22662,7 +25198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22671,7 +25207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22681,7 +25217,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22691,7 +25227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22700,7 +25236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22709,7 +25245,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22718,7 +25254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22727,7 +25263,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -22745,7 +25293,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22760,7 +25308,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22775,7 +25323,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -22794,7 +25342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22809,7 +25357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22824,7 +25372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22839,7 +25387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22855,7 +25403,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22871,7 +25419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22886,7 +25434,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22901,7 +25449,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -22916,7 +25464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22931,7 +25479,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22951,7 +25517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -22982,7 +25548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22997,7 +25563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23012,7 +25578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23027,7 +25593,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23043,7 +25609,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23059,7 +25625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23074,7 +25640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23089,7 +25655,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23104,7 +25670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23119,7 +25685,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23143,7 +25727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23158,7 +25742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23173,7 +25757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23188,7 +25772,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23204,7 +25788,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23220,7 +25804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23235,7 +25819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23250,7 +25834,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23265,7 +25849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23280,7 +25864,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23307,7 +25909,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -23323,7 +25925,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23332,7 +25934,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23341,7 +25943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23350,7 +25952,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23359,7 +25961,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23368,7 +25970,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23377,7 +25979,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -23402,7 +26004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23411,7 +26013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23420,7 +26022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23430,7 +26032,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23440,7 +26042,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23449,7 +26051,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23458,7 +26060,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -23476,7 +26090,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23491,7 +26105,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23506,7 +26120,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23521,7 +26135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23536,7 +26150,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23551,7 +26165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23570,7 +26184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23585,7 +26199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23600,7 +26214,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23616,7 +26230,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23632,7 +26246,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23647,7 +26261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23662,7 +26276,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23685,7 +26317,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23700,7 +26332,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23715,7 +26347,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23730,7 +26362,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23745,7 +26377,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23764,7 +26396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23779,7 +26411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23794,7 +26426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23810,7 +26442,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23826,7 +26458,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -23841,7 +26473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23856,7 +26488,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23876,7 +26526,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23891,7 +26541,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23906,7 +26556,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -23925,7 +26575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23940,7 +26590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23955,7 +26605,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23971,7 +26621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23987,7 +26637,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24002,7 +26652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24017,7 +26667,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24037,7 +26705,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24052,7 +26720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -24079,7 +26747,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24094,7 +26762,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24109,7 +26777,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24128,7 +26796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24143,7 +26811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24158,7 +26826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24174,7 +26842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24190,7 +26858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24205,7 +26873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24220,7 +26888,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24240,7 +26926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -24267,7 +26953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24282,7 +26968,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24297,7 +26983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24316,7 +27002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24331,7 +27017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24346,7 +27032,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24362,7 +27048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24378,7 +27064,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24393,7 +27079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24408,7 +27094,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24435,7 +27139,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -24459,7 +27163,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24468,7 +27172,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24477,7 +27181,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24486,7 +27190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24495,7 +27199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -24516,7 +27220,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24525,7 +27229,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24538,7 +27242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24547,7 +27251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24556,7 +27260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24565,7 +27269,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24575,7 +27279,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24585,7 +27289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24594,7 +27298,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24603,7 +27307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24612,7 +27316,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -24630,7 +27346,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24645,7 +27361,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24660,7 +27376,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24675,7 +27391,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24690,7 +27406,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24705,7 +27421,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24724,7 +27440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24739,7 +27455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24754,7 +27470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24769,7 +27485,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24785,7 +27501,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24801,7 +27517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24816,7 +27532,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -24831,7 +27547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24846,7 +27562,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24866,7 +27600,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -24893,7 +27627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24908,7 +27642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -24927,7 +27661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24942,7 +27676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24957,7 +27691,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24972,7 +27706,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24988,7 +27722,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25004,7 +27738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25019,7 +27753,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25034,7 +27768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25049,7 +27783,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25069,7 +27821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25084,7 +27836,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25103,7 +27855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25118,7 +27870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25133,7 +27885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25148,7 +27900,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25164,7 +27916,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25180,7 +27932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25195,7 +27947,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25210,7 +27962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25225,7 +27977,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25252,7 +28022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -25272,7 +28042,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25281,7 +28051,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25290,7 +28060,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25299,7 +28069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25308,7 +28078,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -25329,7 +28099,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25338,7 +28108,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25347,7 +28117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25360,7 +28130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25369,7 +28139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25378,7 +28148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25387,7 +28157,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25397,7 +28167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25407,7 +28177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25416,7 +28186,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25425,7 +28195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25434,7 +28204,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -25452,7 +28234,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25467,7 +28249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25482,7 +28264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25497,7 +28279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25512,7 +28294,264 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "FirewallRuleName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EndIPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StartIPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25531,7 +28570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25546,7 +28585,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25561,7 +28600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25576,7 +28615,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25592,7 +28631,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25608,7 +28647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25623,7 +28662,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -25638,7 +28677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25653,7 +28692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25661,238 +28700,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "FirewallRuleName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EndIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StartIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25912,7 +28730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -25939,7 +28757,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25954,7 +28772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -25973,7 +28791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25988,7 +28806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26003,7 +28821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26018,7 +28836,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26034,7 +28852,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26050,7 +28868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26065,7 +28883,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26080,7 +28898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26095,7 +28913,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26115,7 +28951,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -26142,7 +28978,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26161,7 +28997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26176,7 +29012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26191,7 +29027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26206,7 +29042,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26222,7 +29058,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26238,7 +29074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26253,7 +29089,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26268,7 +29104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26283,7 +29119,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26307,7 +29161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26322,7 +29176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26337,7 +29191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26352,7 +29206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26368,7 +29222,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26384,7 +29238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26399,7 +29253,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26414,7 +29268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26429,7 +29283,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26456,7 +29328,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropertiesTag": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -26510,7 +29382,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26519,7 +29391,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26528,7 +29400,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26537,7 +29409,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -26558,7 +29430,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26567,7 +29439,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26576,7 +29448,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26585,7 +29457,7 @@ "Type": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26594,7 +29466,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26603,7 +29475,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26612,7 +29484,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26621,7 +29493,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26634,7 +29506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26643,7 +29515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26652,7 +29524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26661,7 +29533,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26671,7 +29543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26681,7 +29553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26690,7 +29562,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -26699,7 +29571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26708,7 +29580,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -26726,7 +29610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26741,7 +29625,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26756,7 +29640,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26771,7 +29655,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26786,7 +29670,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26801,7 +29685,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26816,7 +29700,7 @@ "Type": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26831,7 +29715,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26846,7 +29730,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26861,7 +29745,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26876,7 +29760,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -26895,7 +29779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26910,7 +29794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26925,7 +29809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26940,7 +29824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26956,7 +29840,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26972,7 +29856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26987,7 +29871,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27002,7 +29886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27017,7 +29901,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27037,7 +29939,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -27064,7 +29966,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27079,7 +29981,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27094,7 +29996,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27109,7 +30011,7 @@ "Type": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27124,7 +30026,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27139,7 +30041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27154,7 +30056,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27169,7 +30071,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27188,7 +30090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27203,7 +30105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27218,7 +30120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27233,7 +30135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27249,7 +30151,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27265,7 +30167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27280,7 +30182,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27295,7 +30197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27310,7 +30212,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27330,7 +30250,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27345,7 +30265,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27360,7 +30280,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27375,7 +30295,7 @@ "Type": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27390,7 +30310,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27405,7 +30325,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27420,7 +30340,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27435,7 +30355,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27454,7 +30374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27469,7 +30389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27484,7 +30404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27499,7 +30419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27515,7 +30435,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27531,7 +30451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27546,7 +30466,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27561,7 +30481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27576,7 +30496,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27603,7 +30541,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IConfigurationAutoGenerated", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IConfigurationAutoGenerated, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IConfigurationAutoGenerated, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", @@ -27633,7 +30571,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27642,7 +30580,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27651,7 +30589,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27660,7 +30598,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27669,7 +30607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -27690,7 +30628,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27699,7 +30637,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27712,7 +30650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27721,7 +30659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27730,7 +30668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27739,7 +30677,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27749,7 +30687,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27759,7 +30697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27768,7 +30706,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -27777,7 +30715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27786,7 +30724,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -27804,7 +30754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27819,7 +30769,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27834,7 +30784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27849,7 +30799,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27864,7 +30814,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27879,7 +30829,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -27898,7 +30848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27913,7 +30863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27928,7 +30878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27943,7 +30893,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27959,7 +30909,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27975,7 +30925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27990,7 +30940,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28005,7 +30955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28020,7 +30970,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28040,7 +31008,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -28067,7 +31035,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28082,7 +31050,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28101,7 +31069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28116,7 +31084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28131,7 +31099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28146,7 +31114,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28162,7 +31130,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28178,7 +31146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28193,7 +31161,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28208,7 +31176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28223,7 +31191,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28243,7 +31229,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28258,7 +31244,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28277,7 +31263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28292,7 +31278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28307,7 +31293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28322,7 +31308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28338,7 +31324,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28354,7 +31340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28369,7 +31355,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28384,7 +31370,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28399,7 +31385,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28426,7 +31430,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -28446,7 +31450,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28455,7 +31459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28464,7 +31468,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28473,7 +31477,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28482,7 +31486,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -28503,7 +31507,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28512,7 +31516,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28521,7 +31525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28534,7 +31538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28543,7 +31547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28552,7 +31556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28561,7 +31565,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28571,7 +31575,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28581,7 +31585,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28590,7 +31594,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28599,7 +31603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28608,7 +31612,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -28626,7 +31642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28641,7 +31657,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28656,7 +31672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28671,7 +31687,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28686,7 +31702,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28705,7 +31721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28720,7 +31736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28735,7 +31751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28750,7 +31766,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28766,7 +31782,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28782,7 +31798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28797,7 +31813,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -28812,7 +31828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28827,7 +31843,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28850,7 +31884,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28865,7 +31899,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28880,7 +31914,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28895,7 +31929,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28910,7 +31944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28925,7 +31959,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -28944,7 +31978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28959,7 +31993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28974,7 +32008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28989,7 +32023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29005,7 +32039,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29021,7 +32055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29036,7 +32070,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29051,7 +32085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29066,7 +32100,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29086,7 +32138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -29113,7 +32165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29128,7 +32180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29147,7 +32199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29162,7 +32214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29177,7 +32229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29192,7 +32244,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29208,7 +32260,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29224,7 +32276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29239,7 +32291,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29254,7 +32306,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29269,7 +32321,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29289,7 +32359,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -29316,7 +32386,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29335,7 +32405,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29350,7 +32420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29365,7 +32435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29380,7 +32450,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29396,7 +32466,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29412,7 +32482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29427,7 +32497,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29442,7 +32512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29457,7 +32527,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29481,7 +32569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29496,7 +32584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29511,7 +32599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29526,7 +32614,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29542,7 +32630,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29558,7 +32646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29573,7 +32661,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29588,7 +32676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29603,7 +32691,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29630,7 +32736,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", @@ -29674,7 +32780,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29683,7 +32789,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29692,7 +32798,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29701,7 +32807,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -29722,7 +32828,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29731,7 +32837,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29740,7 +32846,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29749,7 +32855,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29758,7 +32864,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29767,7 +32873,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29776,7 +32882,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29785,7 +32891,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29794,7 +32900,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29803,7 +32909,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29812,7 +32918,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29821,7 +32927,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29830,7 +32936,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29843,7 +32949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29852,7 +32958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29861,7 +32967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29870,7 +32976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29880,7 +32986,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29890,7 +32996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29899,7 +33005,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -29908,7 +33014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29917,7 +33023,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -29935,7 +33053,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29950,7 +33068,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29965,7 +33083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29980,7 +33098,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -29995,7 +33113,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30010,7 +33128,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30025,7 +33143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30040,7 +33158,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30055,7 +33173,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30070,7 +33188,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30085,7 +33203,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30100,7 +33218,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30115,7 +33233,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30130,7 +33248,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30145,7 +33263,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30160,7 +33278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30179,7 +33297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30194,7 +33312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30209,7 +33327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30224,7 +33342,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30240,7 +33358,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30256,7 +33374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30271,7 +33389,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30286,7 +33404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30301,7 +33419,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30321,7 +33457,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -30348,7 +33484,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30363,7 +33499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30378,7 +33514,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30393,7 +33529,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30408,7 +33544,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30423,7 +33559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30438,7 +33574,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30453,7 +33589,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30468,7 +33604,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30483,7 +33619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30498,7 +33634,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30513,7 +33649,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30528,7 +33664,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30547,7 +33683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30562,7 +33698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30577,7 +33713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30592,7 +33728,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30608,7 +33744,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30624,7 +33760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30639,7 +33775,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30654,7 +33790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30669,7 +33805,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30689,7 +33843,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30704,7 +33858,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30719,7 +33873,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30734,7 +33888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30749,7 +33903,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30764,7 +33918,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30779,7 +33933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30794,7 +33948,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30809,7 +33963,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30824,7 +33978,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30839,7 +33993,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30854,7 +34008,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -30869,7 +34023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30888,7 +34042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30903,7 +34057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30918,7 +34072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30933,7 +34087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30949,7 +34103,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30965,7 +34119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30980,7 +34134,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -30995,7 +34149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31010,7 +34164,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31037,7 +34209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -31058,7 +34230,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31067,7 +34239,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31076,7 +34248,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31085,7 +34257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31094,7 +34266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -31115,7 +34287,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31124,7 +34296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31137,7 +34309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31146,7 +34318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31155,7 +34327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31164,7 +34336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31174,7 +34346,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31184,7 +34356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31193,7 +34365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31202,7 +34374,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31211,7 +34383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31220,7 +34392,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -31238,7 +34422,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31253,7 +34437,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31268,7 +34452,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31283,7 +34467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31298,7 +34482,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31313,7 +34497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31332,7 +34516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31347,7 +34531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31362,7 +34546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31377,7 +34561,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31393,7 +34577,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31409,7 +34593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31424,7 +34608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31439,7 +34623,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31454,7 +34638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31469,7 +34653,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31489,7 +34691,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -31516,7 +34718,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31531,7 +34733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31550,7 +34752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31565,7 +34767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31580,7 +34782,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31595,7 +34797,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31611,7 +34813,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31627,7 +34829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31642,7 +34844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31657,7 +34859,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31672,7 +34874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31687,7 +34889,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31707,7 +34927,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -31722,7 +34942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31741,7 +34961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31756,7 +34976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31771,7 +34991,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31786,7 +35006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31802,7 +35022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31818,7 +35038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31833,7 +35053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31848,7 +35068,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -31863,7 +35083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31878,7 +35098,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31938,7 +35176,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName" ] @@ -31946,7 +35184,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SecurityAlertPolicyName, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32011,7 +35249,7 @@ "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Management.Automation.CompletionResult" ] @@ -32019,17 +35257,17 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -32163,17 +35401,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -32181,39 +35419,39 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServerPrivateEndpointConnection, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState]", "PrivateLinkServiceConnectionStateActionsRequired": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire]", @@ -32226,7 +35464,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState" ] @@ -32234,7 +35472,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateEndpointProvisioningState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32299,7 +35537,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire" ] @@ -32307,7 +35545,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateActionsRequire, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32372,7 +35610,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus" ] @@ -32380,7 +35618,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PrivateLinkServiceConnectionStateStatus, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32445,7 +35683,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup" ] @@ -32453,7 +35691,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackup, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32518,7 +35756,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType" ] @@ -32526,7 +35764,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.IdentityType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32591,7 +35829,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption" ] @@ -32599,7 +35837,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32664,7 +35902,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum" ] @@ -32672,7 +35910,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.MinimalTlsVersionEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32737,7 +35975,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum" ] @@ -32745,7 +35983,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.PublicNetworkAccessEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32810,7 +36048,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState" ] @@ -32818,7 +36056,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32883,7 +36121,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion" ] @@ -32891,7 +36129,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerVersion, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -32956,7 +36194,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier" ] @@ -32964,7 +36202,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SkuTier, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33029,7 +36267,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum" ] @@ -33037,7 +36275,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.SslEnforcementEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33102,7 +36340,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow" ] @@ -33110,7 +36348,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33175,7 +36413,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -33183,12 +36421,12 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int32" ] @@ -33196,12 +36434,12 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerPropertiesTags, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType" ] @@ -33209,7 +36447,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreatedByType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33274,7 +36512,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode" ] @@ -33282,7 +36520,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33347,7 +36585,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum" ] @@ -33355,7 +36593,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.GeoRedundantBackupEnum, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33420,7 +36658,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode" ] @@ -33428,7 +36666,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.HighAvailabilityMode, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33493,7 +36731,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType" ] @@ -33501,7 +36739,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ResourceIdentityType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33566,7 +36804,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState" ] @@ -33574,7 +36812,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerHaState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33639,7 +36877,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState" ] @@ -33647,7 +36885,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ServerPublicNetworkAccessState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33712,12 +36950,12 @@ "System.Security.SecureString": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType" ] @@ -33725,7 +36963,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.ConfigurationDataType, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -33790,13 +37028,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IFlexibleServerEditionCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedServerVersion": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability[]", "SupportedStorageEdition": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability[]", @@ -33807,13 +37045,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedVcore": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability[]", "Status": "System.String", @@ -33823,13 +37061,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IVcoreCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedIop": "System.Nullable`1[System.Int64]", "SupportedMemoryPerVcoreMb": "System.Nullable`1[System.Int64]", @@ -33841,7 +37079,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -33849,13 +37087,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageEditionCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedStorageMb": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability[]", "Status": "System.String", @@ -33865,13 +37103,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IStorageMbCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageSizeMb": "System.Nullable`1[System.Int64]", "SupportedIop": "System.Nullable`1[System.Int64]", @@ -33882,13 +37120,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IHyperscaleNodeEditionCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedNodeType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability[]", "SupportedServerVersion": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.IServerVersionCapability[]", @@ -33900,13 +37138,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability[], Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability[], Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability" }, "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601.INodeTypeCapability, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "NodeType": "System.String", @@ -33916,7 +37154,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -33924,7 +37162,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState" ] @@ -33932,7 +37170,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState, Az.PostgreSql.private, Version=1.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.VirtualNetworkRuleState, Az.PostgreSql.private, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.RecoveryServices.json b/tools/Tools.Common/SerializedCmdlets/Az.RecoveryServices.json index 8c8f44e60550..af334315471a 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.RecoveryServices.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.RecoveryServices.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.RecoveryServices", - "ModuleVersion": "7.7.1", + "ModuleVersion": "7.7.2", "Cmdlets": [ { "VerbName": "Add", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -88,7 +88,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -136,7 +136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -196,7 +196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -250,7 +250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -340,7 +340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -397,7 +397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -428,7 +428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -493,7 +493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -536,7 +536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -688,7 +688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -707,7 +707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -768,7 +768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -793,7 +793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -912,7 +912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -937,7 +937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -1080,7 +1080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1097,7 +1097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -1106,7 +1106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -1171,7 +1171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1194,7 +1194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -1209,7 +1209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -1310,7 +1310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -1367,7 +1367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1478,7 +1478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1649,7 +1649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1704,7 +1704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1778,7 +1778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -1888,7 +1888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -1961,7 +1961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -1990,7 +1990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -2006,7 +2006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -2025,7 +2025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": false @@ -2038,7 +2038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": false @@ -2089,7 +2089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -2182,7 +2182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -2257,7 +2257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -2282,7 +2282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -2357,7 +2357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -2382,7 +2382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": false @@ -2401,7 +2401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -2476,7 +2476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -2501,7 +2501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": false @@ -2520,7 +2520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -2619,7 +2619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -2636,7 +2636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -2645,7 +2645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -2654,7 +2654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -2725,7 +2725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -2748,7 +2748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -2763,7 +2763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -2778,7 +2778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -2885,7 +2885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -2942,7 +2942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -2966,7 +2966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3010,7 +3010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3132,7 +3132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -3294,7 +3294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -3456,7 +3456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -3571,7 +3571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -3656,7 +3656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3679,7 +3679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -3764,7 +3764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -3881,7 +3881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -3973,7 +3973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomEmailAddress": "System.Collections.Generic.IList`1[System.String]", "EmailSubscriptionOwner": "System.String", @@ -4128,7 +4128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -4197,7 +4197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -4295,7 +4295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -4395,7 +4395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -4554,7 +4554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREvent, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificEventDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails", "EventSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails", @@ -4655,7 +4655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -5051,7 +5051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -5254,7 +5254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -5557,7 +5557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -5635,7 +5635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -5815,7 +5815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -6080,7 +6080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -6139,7 +6139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -6213,7 +6213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -6286,7 +6286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -6374,7 +6374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -6521,7 +6521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -6594,7 +6594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -6611,7 +6611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -6682,7 +6682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -6769,7 +6769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -6901,7 +6901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -7203,7 +7203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -7315,7 +7315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7388,7 +7388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7478,7 +7478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7583,7 +7583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7673,7 +7673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7748,7 +7748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7882,7 +7882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -7970,7 +7970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8041,7 +8041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8129,7 +8129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8202,7 +8202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -8334,7 +8334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -8409,7 +8409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -8482,7 +8482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -8557,7 +8557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -8691,7 +8691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -9044,7 +9044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -9111,7 +9111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -9212,7 +9212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -9315,7 +9315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -9477,7 +9477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -9585,7 +9585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -9605,7 +9605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -9684,7 +9684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -9774,7 +9774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -9849,7 +9849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -9924,7 +9924,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -10064,7 +10064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -10160,7 +10160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -10233,7 +10233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -10308,7 +10308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -10442,7 +10442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -10522,7 +10522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10593,7 +10593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10681,7 +10681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10754,7 +10754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -10886,7 +10886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -10951,7 +10951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -11022,7 +11022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -11110,7 +11110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -11183,7 +11183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -11315,7 +11315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -11372,7 +11372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -11439,7 +11439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -11508,7 +11508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -11636,7 +11636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceName": "System.String", "ResourceGroupName": "System.String", @@ -11790,7 +11790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -11862,7 +11862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -11991,7 +11991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -12079,7 +12079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -12211,7 +12211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12268,7 +12268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12357,7 +12357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12494,7 +12494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12581,7 +12581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12595,7 +12595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -12611,7 +12611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -12635,7 +12635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12644,7 +12644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12653,7 +12653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -12670,7 +12670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12744,7 +12744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -12764,7 +12764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -12802,7 +12802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12817,7 +12817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12832,7 +12832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -12941,7 +12941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -12963,7 +12963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -13001,7 +13001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13016,7 +13016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13031,7 +13031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13140,7 +13140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -13176,7 +13176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13191,7 +13191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13206,7 +13206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13330,7 +13330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13345,7 +13345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemProtectionState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13360,7 +13360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemDeleteState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -13476,7 +13476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13533,7 +13533,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus" ] @@ -13545,7 +13545,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation" ] @@ -13590,7 +13590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13610,7 +13610,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -13694,7 +13694,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus" ] @@ -13712,7 +13712,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation" ] @@ -13781,7 +13781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13807,7 +13807,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -13933,7 +13933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -13990,7 +13990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14084,7 +14084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -14414,7 +14414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -14613,7 +14613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CrossRegionRestore": "System.Boolean", "BackupStorageRedundancy": "System.String" @@ -14659,7 +14659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -14716,7 +14716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -14800,7 +14800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -14868,7 +14868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -14891,7 +14891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -14900,7 +14900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14974,7 +14974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -14994,7 +14994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -15073,7 +15073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -15093,7 +15093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -15108,7 +15108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15232,7 +15232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15412,7 +15412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -15473,7 +15473,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType" ] @@ -15485,7 +15485,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -15538,7 +15538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15639,7 +15639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15677,7 +15677,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType" ] @@ -15754,7 +15754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15792,7 +15792,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType" ] @@ -15810,7 +15810,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -15887,7 +15887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15984,7 +15984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16029,7 +16029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16084,7 +16084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16150,7 +16150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16246,7 +16246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PointInTimeBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartTime": "System.Nullable`1[System.DateTime]", "EndTime": "System.Nullable`1[System.DateTime]", @@ -16317,7 +16317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16428,7 +16428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16532,7 +16532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16722,7 +16722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16801,7 +16801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16847,7 +16847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -16865,7 +16865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultArchive" @@ -16960,7 +16960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -16985,7 +16985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -17015,7 +17015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultArchive" @@ -17112,7 +17112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -17246,7 +17246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -17271,7 +17271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -17301,7 +17301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultArchive" @@ -17484,7 +17484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Validate", @@ -17530,7 +17530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -17539,7 +17539,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -17571,7 +17571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Daily", @@ -17585,7 +17585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupTierType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupTierType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupTierType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Snapshot", @@ -17616,7 +17616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -17631,7 +17631,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -17675,7 +17675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Daily", @@ -17695,7 +17695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupTierType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupTierType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupTierType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Snapshot", @@ -17744,7 +17744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RPMountScriptDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Validate", @@ -17790,7 +17790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -17864,7 +17864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -17974,7 +17974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Validate", @@ -18020,7 +18020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -18029,7 +18029,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -18041,7 +18041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18070,7 +18070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Daily", @@ -18102,7 +18102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -18117,7 +18117,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -18135,7 +18135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PSPolicyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18176,7 +18176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ScheduleRunType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Daily", @@ -18226,7 +18226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ResourceBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackedUp": "System.Boolean", "VaultId": "System.String" @@ -18685,7 +18685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", "PointInTime": "System.DateTime", @@ -18749,7 +18749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18776,7 +18776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18793,7 +18793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18830,7 +18830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18853,7 +18853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18936,7 +18936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18960,7 +18960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -18983,7 +18983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19038,7 +19038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19073,7 +19073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19206,7 +19206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19229,7 +19229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19284,7 +19284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19319,7 +19319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19437,7 +19437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ProtectableItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19460,7 +19460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19515,7 +19515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19550,7 +19550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -19675,7 +19675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBase", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19881,7 +19881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -20314,7 +20314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.VaultProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.VaultProperty, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.VaultProperty, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "encryptionProperties": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig", "SoftDeleteRetentionPeriodInDays": "System.Nullable`1[System.Int32]", @@ -20493,7 +20493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FilePath": "System.String" }, @@ -20538,7 +20538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -20649,7 +20649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -20798,7 +20798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -20917,7 +20917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -21036,7 +21036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -21132,7 +21132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceName": "System.String", "ResourceGroupName": "System.String", @@ -21307,7 +21307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21364,7 +21364,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21378,7 +21378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -21443,7 +21443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21463,7 +21463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -21597,7 +21597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -21616,7 +21616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -21688,7 +21688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -21713,7 +21713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -21783,7 +21783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21838,7 +21838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21856,7 +21856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultStandard" @@ -21868,7 +21868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultArchive" @@ -21927,7 +21927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -21951,7 +21951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultStandard" @@ -21969,7 +21969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointTier, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "VaultArchive" @@ -22058,7 +22058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsManagedDisk": "System.Boolean", "VhdUri": "System.String", @@ -22715,7 +22715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureToAzureDiskReplicationConfiguration": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", "RecoveryResourceGroupId": "System.String", @@ -22799,7 +22799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -22982,7 +22982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -23425,7 +23425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -23821,7 +23821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskId": "System.String", "LogStorageAccountId": "System.String", @@ -24111,7 +24111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskId": "System.String", "LogStorageAccountId": "System.String", @@ -24362,7 +24362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -24449,7 +24449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -24466,7 +24466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -24483,7 +24483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24510,7 +24510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24590,7 +24590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24629,7 +24629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -24796,7 +24796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -24819,7 +24819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -24906,7 +24906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -25018,7 +25018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -26427,7 +26427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -26496,7 +26496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -26585,7 +26585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -26768,7 +26768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -26849,7 +26849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -26923,7 +26923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27052,7 +27052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -27130,7 +27130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -27147,7 +27147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -27167,7 +27167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -27240,7 +27240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -27263,7 +27263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -27289,7 +27289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -27379,7 +27379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -27402,7 +27402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -27536,7 +27536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -27614,7 +27614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27632,7 +27632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27744,7 +27744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -27816,7 +27816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27840,7 +27840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -27864,7 +27864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -27944,7 +27944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -28002,7 +28002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -28082,7 +28082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -28181,7 +28181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -28261,7 +28261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -28315,7 +28315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -28395,7 +28395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -28449,7 +28449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -28529,7 +28529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -28598,7 +28598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -28787,7 +28787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -28901,7 +28901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -28927,7 +28927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -28937,7 +28937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput" }, "ValidateNotNullOrEmpty": true @@ -29005,7 +29005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -29060,7 +29060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -29101,7 +29101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput" }, "ValidateNotNullOrEmpty": false @@ -29111,7 +29111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -29161,7 +29161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -29438,7 +29438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -29536,7 +29536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -29583,7 +29583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -29617,7 +29617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -29906,7 +29906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -30053,7 +30053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -30100,7 +30100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -30134,7 +30134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput" }, "ValidateNotNullOrEmpty": false @@ -30150,7 +30150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -30424,7 +30424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -30571,7 +30571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -30663,7 +30663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -30810,7 +30810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -31172,7 +31172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -31281,7 +31281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -31328,7 +31328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -31475,7 +31475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -31746,7 +31746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -31812,7 +31812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -32214,7 +32214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -32280,7 +32280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -32427,7 +32427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -32568,7 +32568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -32772,7 +32772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -32919,7 +32919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectableItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificVMDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", "ProtectionReadinessErrors": "System.Collections.Generic.IList`1[System.String]", @@ -32951,7 +32951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput" }, "ValidateNotNullOrEmpty": true @@ -33061,7 +33061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -33235,7 +33235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -33382,7 +33382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -33524,7 +33524,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -33611,7 +33611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -33703,7 +33703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -33841,7 +33841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -33919,7 +33919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -33933,7 +33933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -34000,7 +34000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -34020,7 +34020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassification, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FriendlyName": "System.String", "Id": "System.String", @@ -34148,7 +34148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -34217,7 +34217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -34244,7 +34244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -34313,7 +34313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -34352,7 +34352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -34460,7 +34460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReuseExistingNic": "System.Boolean", "EnableAcceleratedNetworkingOnRecovery": "System.Boolean", @@ -34527,7 +34527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -34683,7 +34683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails" }, "ValidateNotNullOrEmpty": false @@ -34746,7 +34746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -34980,7 +34980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails" }, "ValidateNotNullOrEmpty": false @@ -35104,7 +35104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsPrimary": "System.Boolean", "IsSeletedForFailover": "System.Boolean", @@ -35546,7 +35546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -35607,7 +35607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -35616,7 +35616,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -35628,7 +35628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -35637,7 +35637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -35658,7 +35658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "TierRecommended", @@ -35714,7 +35714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35785,7 +35785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -35800,7 +35800,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType" ] @@ -35818,7 +35818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -35833,7 +35833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -35866,7 +35866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "TierRecommended", @@ -35952,7 +35952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36038,7 +36038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -36195,7 +36195,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess" ] @@ -36207,7 +36207,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" ] @@ -36411,7 +36411,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess" ] @@ -36429,7 +36429,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" ] @@ -36507,7 +36507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -36573,7 +36573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -36587,7 +36587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureWorkload" @@ -36599,7 +36599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -36679,7 +36679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureWorkload" @@ -36697,7 +36697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -36791,7 +36791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -36811,7 +36811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureWorkload" @@ -36829,7 +36829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -36923,7 +36923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureWorkload" @@ -36941,7 +36941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -37042,7 +37042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -37114,7 +37114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -37182,7 +37182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -37329,7 +37329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -37401,7 +37401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -37464,7 +37464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -37551,7 +37551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -37623,7 +37623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -37681,7 +37681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -37763,7 +37763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -37835,7 +37835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -37896,7 +37896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailablePolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", "ProtectionContainerMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", @@ -38027,7 +38027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -38099,7 +38099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -38173,7 +38173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -38341,7 +38341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -38422,7 +38422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -38547,7 +38547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -38682,7 +38682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -38754,7 +38754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -38861,7 +38861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39083,7 +39083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -39155,7 +39155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39264,7 +39264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39386,7 +39386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39508,7 +39508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -39621,7 +39621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -39693,7 +39693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -39779,7 +39779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -39938,7 +39938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -40010,7 +40010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -40080,7 +40080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -40244,7 +40244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -40316,7 +40316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -40372,7 +40372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRStorageClassificationMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Name": "System.String", @@ -40501,7 +40501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -40582,7 +40582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -40603,7 +40603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -40735,7 +40735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -40811,7 +40811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -40958,7 +40958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -41019,7 +41019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -41208,7 +41208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -41667,7 +41667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Response": "System.String" }, @@ -41712,7 +41712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -41769,7 +41769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -41850,7 +41850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -41931,7 +41931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -42063,7 +42063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -42204,7 +42204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -42270,7 +42270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -42288,7 +42288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", "PointInTime": "System.DateTime", @@ -42332,7 +42332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -42350,7 +42350,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType" ] @@ -42560,7 +42560,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption" ] @@ -42779,7 +42779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -42946,7 +42946,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption" ] @@ -43118,7 +43118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -43142,7 +43142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RestoreFSResolveConflictOption, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -43172,7 +43172,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType" ] @@ -43375,7 +43375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -43633,7 +43633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -43905,7 +43905,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption" ] @@ -44077,7 +44077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -44335,7 +44335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -44623,7 +44623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryConfigBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPoint": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", "PointInTime": "System.DateTime", @@ -44811,7 +44811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -44892,7 +44892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -45054,7 +45054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -45231,7 +45231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAlertSetting, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomEmailAddress": "System.Collections.Generic.IList`1[System.String]", "EmailSubscriptionOwner": "System.String", @@ -45766,7 +45766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -45838,7 +45838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -46127,7 +46127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -46236,7 +46236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig" }, "ValidateNotNullOrEmpty": false @@ -46296,7 +46296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -46735,7 +46735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -46910,7 +46910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig" }, "ValidateNotNullOrEmpty": false @@ -47000,7 +47000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVaultSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceName": "System.String", "ResourceGroupName": "System.String", @@ -47057,7 +47057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -47114,7 +47114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -47262,7 +47262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -47281,7 +47281,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType" ] @@ -47340,7 +47340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -47365,7 +47365,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType" ] @@ -47454,7 +47454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -47511,7 +47511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -47526,7 +47526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -47535,7 +47535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -47565,7 +47565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "TierRecommended", @@ -47621,7 +47621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -47695,7 +47695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -47746,7 +47746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -47825,7 +47825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -47840,7 +47840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -47873,7 +47873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.TieringMode, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "TierRecommended", @@ -47959,7 +47959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -48010,7 +48010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -48104,7 +48104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", @@ -48155,7 +48155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SnapshotConsistencyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -48241,7 +48241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBase", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -48596,7 +48596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -48653,7 +48653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -48734,7 +48734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfigResource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfigResource, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfigResource, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfig", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -49356,7 +49356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -49425,7 +49425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -49443,7 +49443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -49550,7 +49550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -49574,7 +49574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -49787,7 +49787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -49856,7 +49856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -49872,7 +49872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -49976,7 +49976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -49998,7 +49998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -50220,7 +50220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -50289,7 +50289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -50309,7 +50309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -50395,7 +50395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -50470,7 +50470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -50633,7 +50633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -50702,7 +50702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -50785,7 +50785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -50945,7 +50945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -51023,7 +51023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -51170,7 +51170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -51330,7 +51330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -51399,7 +51399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -51491,7 +51491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -51665,7 +51665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -51734,7 +51734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -51792,7 +51792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -51881,7 +51881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -51932,7 +51932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -52171,7 +52171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -52240,7 +52240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -52322,7 +52322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -52390,7 +52390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -52441,7 +52441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRClusterRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Nodes": "System.Collections.Generic.IList`1[System.String]", "RecoveryPointTime": "System.Nullable`1[System.DateTime]", @@ -52701,7 +52701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -52770,7 +52770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -52790,7 +52790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -52876,7 +52876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -52951,7 +52951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -53114,7 +53114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -53183,7 +53183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -53203,7 +53203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -53290,7 +53290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -53392,7 +53392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -53573,7 +53573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -53627,7 +53627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -53789,7 +53789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -54145,7 +54145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -54223,7 +54223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -54373,7 +54373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -54536,7 +54536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -54605,7 +54605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -54626,7 +54626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -54730,7 +54730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -54757,7 +54757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -54949,7 +54949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -55021,7 +55021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -55039,7 +55039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -55080,7 +55080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -55124,7 +55124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -55175,7 +55175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -55199,7 +55199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -55246,7 +55246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -55296,7 +55296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" }, "ValidateNotNullOrEmpty": true @@ -55420,7 +55420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -55498,7 +55498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -55518,7 +55518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -55692,7 +55692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -55782,7 +55782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -55959,7 +55959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -56028,7 +56028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -56048,7 +56048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -56109,7 +56109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -56166,7 +56166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -56247,7 +56247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -56429,7 +56429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -56455,7 +56455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -56596,7 +56596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -56774,7 +56774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -56847,7 +56847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -56967,7 +56967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -57021,7 +57021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -57044,7 +57044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -57164,7 +57164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -57252,7 +57252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -57481,7 +57481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -57550,7 +57550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -57570,7 +57570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -57661,7 +57661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -57743,7 +57743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -57925,7 +57925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -57979,7 +57979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPoint, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryPointTime": "System.Nullable`1[System.DateTime]", "ID": "System.String", @@ -58117,7 +58117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -58435,7 +58435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -58516,7 +58516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -58648,7 +58648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -58789,7 +58789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -58846,7 +58846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -58922,7 +58922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -59204,7 +59204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -59223,7 +59223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -59301,7 +59301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -59326,7 +59326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -59381,7 +59381,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -59438,7 +59438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -59452,7 +59452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -59466,7 +59466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -59537,7 +59537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -59557,7 +59557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -59577,7 +59577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -59677,7 +59677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -59697,7 +59697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "AzureVM", @@ -59804,7 +59804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -59861,7 +59861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -59936,7 +59936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ItemBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -60047,7 +60047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -60101,7 +60101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -60158,7 +60158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -60237,7 +60237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -60358,7 +60358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -60415,7 +60415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -60485,7 +60485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupEngineBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "BackupEngineType": "System.String", @@ -60591,7 +60591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -60669,7 +60669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -60693,7 +60693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig" }, "ValidateNotNullOrEmpty": true @@ -60703,7 +60703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -60909,7 +60909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -60939,7 +60939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig" }, "ValidateNotNullOrEmpty": true @@ -60955,7 +60955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -61100,7 +61100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -61130,7 +61130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectionCluster, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", "SharedDiskProperties": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", @@ -61469,7 +61469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -61538,7 +61538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -61551,7 +61551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -61637,7 +61637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -61656,7 +61656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -61818,7 +61818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -61890,7 +61890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -61912,7 +61912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -61979,7 +61979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -62074,7 +62074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetworkMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificNetworkMappingDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", "ID": "System.String", @@ -62102,7 +62102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRNetwork, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmNetworkSubnetList": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", "FriendlyName": "System.String", @@ -62230,7 +62230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -62356,7 +62356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -62626,7 +62626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -62765,7 +62765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -62919,7 +62919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -63095,7 +63095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -63347,7 +63347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -63486,7 +63486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -63576,7 +63576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -63828,7 +63828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -63925,7 +63925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -63997,7 +63997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -64098,7 +64098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -64225,7 +64225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -64393,7 +64393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -64543,7 +64543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -64556,7 +64556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.String", "FreeSpace": "System.String", @@ -64571,7 +64571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", "RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", @@ -64591,7 +64591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -64632,7 +64632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -64674,7 +64674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -64710,7 +64710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -64720,7 +64720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -64740,7 +64740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -64864,7 +64864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThresholdPercentage": "System.Nullable`1[System.Int32]", "CapacityInBytes": "System.Nullable`1[System.Int64]", @@ -64968,7 +64968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -64987,7 +64987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.String", "FreeSpace": "System.String", @@ -65008,7 +65008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", "RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", @@ -65034,7 +65034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -65081,7 +65081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -65111,7 +65111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -65184,7 +65184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThresholdPercentage": "System.Nullable`1[System.Int32]", "CapacityInBytes": "System.Nullable`1[System.Int64]", @@ -65269,7 +65269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -65288,7 +65288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMasterTargetServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataStores": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", "RetentionVolumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", @@ -65314,7 +65314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]", @@ -65361,7 +65361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -65421,7 +65421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -65558,7 +65558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -65618,7 +65618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -65657,7 +65657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -65824,7 +65824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -65869,7 +65869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabric, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FabricSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", "Name": "System.String", @@ -65893,7 +65893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -66060,7 +66060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -66197,7 +66197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -66334,7 +66334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -66394,7 +66394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -66677,7 +66677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -66707,7 +66707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "ValidateNotNullOrEmpty": true @@ -66723,7 +66723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -66991,7 +66991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -67085,7 +67085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -67334,7 +67334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -67406,7 +67406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -67476,7 +67476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -67674,7 +67674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -67746,7 +67746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -67807,7 +67807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryServicesProvider, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Connected": "System.Boolean", "LastHeartbeat": "System.DateTime", @@ -67941,7 +67941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRJob, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Errors": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", "Tasks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", @@ -68022,7 +68022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -68043,7 +68043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -68173,7 +68173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRvCenter, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastHeartbeat": "System.Nullable`1[System.DateTime]", "FriendlyName": "System.String", @@ -68200,7 +68200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRunAsAccount, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccountId": "System.String", "AccountName": "System.String" @@ -68345,7 +68345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", "Identity": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", @@ -68424,7 +68424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "SystemAssigned", @@ -68526,7 +68526,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess" ] @@ -68538,7 +68538,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" ] @@ -68555,7 +68555,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState" ] @@ -68748,7 +68748,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess" ] @@ -68766,7 +68766,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" ] @@ -68789,7 +68789,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState" ] @@ -68891,7 +68891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.MSIdentity, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "SystemAssigned", @@ -69047,7 +69047,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess" ] @@ -69065,7 +69065,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" ] @@ -69088,7 +69088,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState" ] @@ -69356,7 +69356,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess" ] @@ -69374,7 +69374,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" ] @@ -69397,7 +69397,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState" ] @@ -69506,7 +69506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "StartTime": "System.DateTime", @@ -69768,7 +69768,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails" ] @@ -69776,7 +69776,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRErrorDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderErrorDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError", "ServiceErrorDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError", @@ -69815,7 +69815,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTimeUtc": "System.DateTime", "ErrorCode": "System.Int32", @@ -69874,7 +69874,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRServiceError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Message": "System.String", @@ -69924,7 +69924,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask" ] @@ -69932,7 +69932,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRTask, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GroupTaskDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails", "EndTime": "System.DateTime", @@ -69984,7 +69984,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRGroupTaskDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" }, @@ -70046,7 +70046,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -70080,7 +70080,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartTime": "System.Nullable`1[System.DateTime]", "JobId": "System.String", @@ -70136,7 +70136,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError" ] @@ -70144,7 +70144,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationTimeUtc": "System.String", "EntityId": "System.String", @@ -70202,7 +70202,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails" ] @@ -70210,7 +70210,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails]", "EnableAcceleratedNetworkingOnRecovery": "System.Nullable`1[System.Boolean]", @@ -70273,7 +70273,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails" ] @@ -70281,7 +70281,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfigDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecoveryLbBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", "TfoLbBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]", @@ -70405,7 +70405,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsManagedDisk": "System.Boolean", "VhdUri": "System.String", @@ -70581,7 +70581,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -70678,7 +70678,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -70765,7 +70765,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -70852,7 +70852,7 @@ "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AlertSettings": "Microsoft.Azure.Commands.RecoveryServices.AlertSettings", "ImmutabilitySettings": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilitySettings", @@ -70904,7 +70904,7 @@ "Microsoft.Azure.Commands.RecoveryServices.AlertSettings": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.AlertSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AlertSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AlertSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureMonitorAlertsForAllJobFailure": "System.String", "AzureMonitorAlertsForAllReplicationIssues": "System.String", @@ -70945,7 +70945,7 @@ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilitySettings": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilitySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilitySettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilitySettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ImmutabilityState": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState" }, @@ -70982,7 +70982,7 @@ "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ImmutabilityState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -71069,7 +71069,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.RestoreSettings": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.RestoreSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.RestoreSettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.RestoreSettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CrossSubscriptionRestoreSettings": "Microsoft.Azure.Management.RecoveryServices.Models.CrossSubscriptionRestoreSettings" }, @@ -71115,7 +71115,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.CrossSubscriptionRestoreSettings": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.CrossSubscriptionRestoreSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.CrossSubscriptionRestoreSettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.CrossSubscriptionRestoreSettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CrossSubscriptionRestoreState": "System.String" }, @@ -71161,7 +71161,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.SoftDeleteSettings": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.SoftDeleteSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.SoftDeleteSettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.SoftDeleteSettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SoftDeleteRetentionPeriodInDays": "System.Nullable`1[System.Int32]", "SoftDeleteState": "System.String", @@ -71225,7 +71225,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesEncryption": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesEncryption, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesEncryption, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KekIdentity": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKekIdentity", "KeyVaultProperties": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKeyVaultProperties", @@ -71281,7 +71281,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.CmkKekIdentity": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKekIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKekIdentity, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKekIdentity, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseSystemAssignedIdentity": "System.Nullable`1[System.Boolean]", "UserAssignedIdentity": "System.String" @@ -71332,7 +71332,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.CmkKeyVaultProperties": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKeyVaultProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKeyVaultProperties, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.CmkKeyVaultProperties, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "KeyUri": "System.String" }, @@ -71378,7 +71378,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesMoveDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesMoveDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesMoveDetails, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesMoveDetails, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartTimeUtc": "System.Nullable`1[System.DateTime]", "CompletionTimeUtc": "System.Nullable`1[System.DateTime]", @@ -71444,7 +71444,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesRedundancySettings": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesRedundancySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesRedundancySettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.VaultPropertiesRedundancySettings, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StandardTierStorageRedundancy": "System.String", "CrossRegionRestore": "System.String" @@ -71495,7 +71495,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection" ] @@ -71503,7 +71503,7 @@ "Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.PrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GroupID": "System.Collections.Generic.List`1[System.String]", "ID": "System.String", @@ -71548,7 +71548,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.IdentityData, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity]", "PrincipalId": "System.String", @@ -71613,7 +71613,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity" @@ -71622,7 +71622,7 @@ "Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity, Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -71673,7 +71673,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup" ] @@ -71681,7 +71681,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", "StartGroupActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", @@ -71752,7 +71752,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction" ] @@ -71760,7 +71760,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanAction, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails", "FailoverTypes": "System.Collections.Generic.IList`1[System.String]", @@ -71816,7 +71816,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanActionDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -71850,7 +71850,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomDetails": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails", "FailoverTypes": "System.Collections.Generic.IList`1[System.String]", @@ -71915,7 +71915,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -71949,7 +71949,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem" ] @@ -71957,7 +71957,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationProtectedItem, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProviderSpecificRPIDetails", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -72039,7 +72039,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails" ] @@ -72047,7 +72047,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanA2ADetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrimaryZone": "System.String", "RecoveryZone": "System.String" @@ -72095,7 +72095,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlan, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Groups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRecoveryPlanGroup]", "ReplicationProvider": "System.Collections.Generic.IList`1[System.String]", @@ -72157,7 +72157,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRReplicationClusterProviderSpecificSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72191,7 +72191,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationItemProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SharedDiskProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationProviderSpecificSettings", "CurrentScenario": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails", @@ -72235,7 +72235,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationProviderSpecificSettings": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationProviderSpecificSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationProviderSpecificSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRSharedDiskReplicationProviderSpecificSettings, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72269,7 +72269,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes" ] @@ -72277,7 +72277,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RegisteredClusterNodes, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsSharedDiskVirtualNode": "System.Nullable`1[System.Boolean]", "ClusterNodeFqdn": "System.String", @@ -72338,7 +72338,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderType": "System.String" }, @@ -72370,7 +72370,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASREventSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72410,7 +72410,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72444,7 +72444,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet" ] @@ -72452,7 +72452,7 @@ "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressList": "System.Collections.Generic.IList`1[System.String]", "FriendlyName": "System.String", @@ -72508,7 +72508,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificNetworkMappingDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Load", @@ -72547,7 +72547,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72581,7 +72581,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRFabricSpecificVMDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72615,7 +72615,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk" ] @@ -72623,7 +72623,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVirtualHardDisk, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Volumes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]", "Capacity": "System.Int64", @@ -72663,7 +72663,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume" ] @@ -72671,7 +72671,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Label": "System.String", "Name": "System.String" @@ -72709,7 +72709,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy" ] @@ -72717,7 +72717,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicy, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReplicationProviderSettings": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRPolicyProviderSettingsDetails", "FriendlyName": "System.String", @@ -72768,7 +72768,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping" ] @@ -72776,7 +72776,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMapping, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProviderSpecificDetails": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", "HealthErrorDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRHealthError]", @@ -72834,7 +72834,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionContainerMappingProviderSpecificDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -72868,7 +72868,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobStatus, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -72955,7 +72955,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -73042,7 +73042,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RecoveryPointBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType", "ContainerType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.ContainerType", @@ -73089,7 +73089,7 @@ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBase": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBase", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBase, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBase, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGuardOperationDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail]", "ResourceGuardResourceId": "System.String", @@ -73154,7 +73154,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail" ] @@ -73162,7 +73162,7 @@ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardOperationDetail, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VaultCriticalOperation": "System.String", "DefaultResourceRequest": "System.String" @@ -73213,7 +73213,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.EncryptionConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UseSystemAssignedIdentity": "System.Nullable`1[System.Boolean]", "Id": "System.String", @@ -73260,13 +73260,13 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[], Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig" }, "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRInMageRcmDiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskId": "System.String", "LogStorageAccountId": "System.String", @@ -73306,7 +73306,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.AsrInMageAzureV2DiskInput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiskId": "System.String", "LogStorageAccountId": "System.String", @@ -73346,7 +73346,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate" ] @@ -73354,7 +73354,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OsType": "System.String", "RebootStatus": "System.String", @@ -73407,7 +73407,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails" ] @@ -73415,7 +73415,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.PSIPConfigInputDetails, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsPrimary": "System.Boolean", "IsSeletedForFailover": "System.Boolean", @@ -73462,7 +73462,7 @@ "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -73549,7 +73549,7 @@ "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models", "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SourceFileType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -73636,7 +73636,7 @@ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.TargetDiskNetworkAccessOption, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -73723,7 +73723,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRVMNicConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReuseExistingNic": "System.Boolean", "EnableAcceleratedNetworkingOnRecovery": "System.Boolean", @@ -73773,7 +73773,7 @@ "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", @@ -73860,7 +73860,7 @@ "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfig": { "Namespace": "Microsoft.Azure.Management.RecoveryServices.Backup.Models", "Name": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfig, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.Backup.Models.BackupResourceVaultConfig, Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGuardOperationRequests": "System.Collections.Generic.IList`1[System.String]", "IsSoftDeleteFeatureStateEditable": "System.Nullable`1[System.Boolean]", @@ -73941,7 +73941,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzureToAzureReplicationProtectedItemConfig, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureToAzureDiskReplicationConfiguration": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRAzuretoAzureDiskReplicationConfig[]", "RecoveryResourceGroupId": "System.String", @@ -73990,7 +73990,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore" ] @@ -73998,7 +73998,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRDataStore, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.String", "FreeSpace": "System.String", @@ -74044,7 +74044,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume" ] @@ -74052,7 +74052,7 @@ "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery", "Name": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRRetentionVolume, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThresholdPercentage": "System.Nullable`1[System.Int32]", "CapacityInBytes": "System.Nullable`1[System.Int64]", @@ -74098,7 +74098,7 @@ "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState": { "Namespace": "Microsoft.Azure.Commands.RecoveryServices", "Name": "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.CrossSubscriptionRestoreState, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "HasFlag", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.SelfHelp.json b/tools/Tools.Common/SerializedCmdlets/Az.SelfHelp.json index 19abfb10169a..595f2b4bb747 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.SelfHelp.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.SelfHelp.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.SelfHelp", - "ModuleVersion": "0.2.1", + "ModuleVersion": "0.3.0", "Cmdlets": [ { "VerbName": "Get", @@ -14,15 +14,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Diagnostic": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]", - "Insight": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]", - "GlobalParameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState]", - "AcceptedAt": "System.String" + "GlobalParameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters", + "Diagnostic": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic]", + "Insight": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation]", + "AcceptedAt": "System.String", + "ProvisioningState": "System.String" } }, "ParameterSets": [ @@ -39,7 +39,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -48,7 +48,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -57,7 +57,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -80,7 +80,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -89,7 +89,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -98,7 +98,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -108,7 +108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -118,7 +118,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -127,7 +127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -136,7 +136,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -154,7 +166,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -169,7 +181,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -188,7 +200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -203,7 +215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -218,7 +230,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -234,7 +246,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -250,7 +262,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -265,7 +277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -280,7 +292,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -300,7 +330,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -329,7 +359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -344,7 +374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -359,7 +389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -375,7 +405,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -391,7 +421,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -406,7 +436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -421,7 +451,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -445,7 +493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -460,7 +508,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -475,7 +523,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -491,7 +539,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -507,7 +555,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -522,7 +570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -537,7 +585,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -562,11 +628,11 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Solution": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]" + "Solution": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties]" } }, "ParameterSets": [ @@ -580,7 +646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -589,7 +655,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -602,7 +668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -611,7 +677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -620,7 +686,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -630,7 +696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -640,7 +706,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -649,7 +715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -658,7 +724,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -673,7 +751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -688,7 +766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -707,7 +785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -722,7 +800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -737,7 +815,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -753,7 +831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -769,7 +847,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -784,7 +862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -799,7 +877,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -824,14 +920,14 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Appendix": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]", + "Appendix": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix", + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters", "Content": "System.String", + "ProvisioningState": "System.String", "SolutionId": "System.String", "Title": "System.String" } @@ -850,7 +946,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -859,7 +955,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -868,7 +964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -891,7 +987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -900,7 +996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -909,7 +1005,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -919,7 +1015,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -929,7 +1025,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -938,7 +1034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -947,7 +1043,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -965,7 +1073,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -980,7 +1088,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -999,7 +1107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1014,7 +1122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1029,7 +1137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1045,7 +1153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1061,7 +1169,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1076,7 +1184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1091,7 +1199,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1111,7 +1237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -1140,7 +1266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1155,7 +1281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1170,7 +1296,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1186,7 +1312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1202,7 +1328,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1217,7 +1343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1232,7 +1358,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1256,7 +1400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1271,7 +1415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1286,7 +1430,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1302,7 +1446,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1318,7 +1462,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1333,7 +1477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1348,7 +1492,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1373,22 +1535,22 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ReplacementMapMetricsBasedChart": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]", - "Section": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters", - "ReplacementMapDiagnostic": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]", - "ReplacementMapTroubleshooter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]", - "TriggerCriterion": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "ReplacementMapVideo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "ReplacementMapVideoGroup": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "ReplacementMapWebResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]", + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters", + "ReplacementMapMetricsBasedChart": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart]", + "Section": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection]", + "ReplacementMapDiagnostic": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic]", + "ReplacementMapTroubleshooter": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters]", + "TriggerCriterion": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion]", + "ReplacementMapVideo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "ReplacementMapVideoGroup": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "ReplacementMapWebResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", "Content": "System.String", "Location": "System.String", + "ProvisioningState": "System.String", "SolutionId": "System.String", "Title": "System.String" } @@ -1407,7 +1569,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1416,7 +1578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1425,7 +1587,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -1448,7 +1610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1457,7 +1619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1466,7 +1628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1476,7 +1638,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1486,7 +1648,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1495,7 +1657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1504,7 +1666,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1522,7 +1696,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1537,7 +1711,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1556,7 +1730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1571,7 +1745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1586,7 +1760,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1602,7 +1776,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1618,7 +1792,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1633,7 +1807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1648,7 +1822,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1668,7 +1860,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -1697,7 +1889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1712,7 +1904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1727,7 +1919,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1743,7 +1935,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1759,7 +1951,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1774,7 +1966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1789,7 +1981,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1813,7 +2023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1828,7 +2038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1843,7 +2053,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1859,7 +2069,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1875,7 +2085,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1890,7 +2100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1905,7 +2115,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1930,14 +2158,14 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourceSelfHelp, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourceSelfHelp, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Section": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]", - "ReplacementMapVideo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "ReplacementMapVideoGroup": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "ReplacementMapWebResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", + "Section": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp]", + "ReplacementMapVideo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "ReplacementMapVideoGroup": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "ReplacementMapWebResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", "Content": "System.String", "SolutionId": "System.String", "Title": "System.String" @@ -1954,7 +2182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1963,7 +2191,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -1986,7 +2214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1995,7 +2223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2004,7 +2232,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2014,7 +2242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2024,7 +2252,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2033,7 +2261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2042,7 +2270,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2057,7 +2297,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2076,7 +2316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2091,7 +2331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2106,7 +2346,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2122,7 +2362,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2138,7 +2378,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2153,7 +2393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2168,7 +2408,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2188,7 +2446,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -2217,7 +2475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2232,7 +2490,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2247,7 +2505,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2263,7 +2521,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2279,7 +2537,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2294,7 +2552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2309,7 +2567,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2333,7 +2609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2348,7 +2624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2363,7 +2639,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2379,7 +2655,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2395,7 +2671,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2410,7 +2686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2425,7 +2701,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2450,13 +2744,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Step": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState]", + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters", + "Step": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep]", + "ProvisioningState": "System.String", "SolutionId": "System.String" } }, @@ -2474,7 +2768,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2483,7 +2777,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2492,7 +2786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -2515,7 +2809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2524,7 +2818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2533,7 +2827,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2543,7 +2837,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2553,7 +2847,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2562,7 +2856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2571,7 +2865,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2589,7 +2895,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2604,7 +2910,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2623,7 +2929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2638,7 +2944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2653,7 +2959,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2669,7 +2975,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2685,7 +2991,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2700,7 +3006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2715,7 +3021,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2735,7 +3059,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -2764,7 +3088,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2779,7 +3103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2794,7 +3118,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2810,7 +3134,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2826,7 +3150,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2841,7 +3165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2856,7 +3180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2864,12 +3188,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -2880,7 +3222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2895,7 +3237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2910,7 +3252,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2926,7 +3268,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2942,7 +3284,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2957,7 +3299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2972,7 +3314,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2997,9 +3357,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ICheckNameAvailabilityResponse, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityResponse, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NameAvailable": "System.Nullable`1[System.Boolean]", "Message": "System.String", @@ -3017,57 +3377,56 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "CheckNameAvailabilityRequest", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" + "Name": "System.String", + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "CheckNameAvailabilityRequest", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "Type": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Type", + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3080,7 +3439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3089,7 +3448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3098,7 +3457,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3108,7 +3467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3118,7 +3477,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3127,7 +3486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3136,14 +3495,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "PostExpanded", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { @@ -3151,7 +3522,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3160,36 +3531,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Type", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3200,7 +3541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3215,7 +3556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3230,7 +3571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3246,7 +3587,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3262,7 +3603,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3277,7 +3618,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3292,7 +3633,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3308,36 +3667,36 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Scope", + "Name": "CheckNameAvailabilityRequest", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ICheckNameAvailabilityRequest, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Name": "System.String", + "Type": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CheckNameAvailabilityRequest", + "Name": "Scope", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "Type": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -3350,7 +3709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3365,7 +3724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3380,7 +3739,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3396,7 +3755,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3412,7 +3771,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3427,7 +3786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3442,7 +3801,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3454,40 +3831,30 @@ ] }, { - "Name": "PostViaIdentityExpanded", + "Name": "PostExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3498,15 +3865,15 @@ }, { "ParameterMetadata": { - "Name": "Type", + "Name": "Scope", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -3521,7 +3888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3536,7 +3903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3551,7 +3918,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3567,7 +3934,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3583,7 +3950,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3598,7 +3965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3613,7 +3980,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3625,50 +4010,36 @@ ] }, { - "Name": "PostViaIdentity", + "Name": "PostViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "JsonFilePath", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CheckNameAvailabilityRequest", + "Name": "Scope", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.ICheckNameAvailabilityRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "Type": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -3681,7 +4052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3696,7 +4067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3711,7 +4082,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3727,7 +4098,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3743,7 +4114,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3758,7 +4129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3773,7 +4144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3781,23 +4152,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3805,45 +4170,99 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "PostViaJsonString", + "Parameters": [ { "ParameterMetadata": { - "Name": "Break", + "Name": "JsonString", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Scope", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { + "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3859,7 +4278,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3874,7 +4293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3889,7 +4308,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3916,7 +4353,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -3929,7 +4366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3938,7 +4375,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3947,7 +4384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -3964,11 +4401,11 @@ { "Name": "ContinueRequestBody", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Response": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", + "Response": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse]", "StepId": "System.String" } }, @@ -3977,10 +4414,10 @@ { "Name": "Response", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse" }, "ValidateNotNullOrEmpty": false }, @@ -3989,7 +4426,25 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4002,7 +4457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4011,7 +4466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4020,7 +4475,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4030,7 +4485,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4040,7 +4495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4049,7 +4504,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4058,7 +4513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4067,14 +4522,26 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "ContinueExpanded", + "Name": "ContinueViaJsonString", "Parameters": [ { "ParameterMetadata": { @@ -4082,7 +4549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4097,7 +4564,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4108,31 +4575,15 @@ }, { "ParameterMetadata": { - "Name": "Response", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StepId", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -4147,7 +4598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4162,7 +4613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4177,7 +4628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4193,7 +4644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4209,7 +4660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4224,7 +4675,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4239,7 +4690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4254,7 +4705,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4266,7 +4735,7 @@ ] }, { - "Name": "Continue", + "Name": "ContinueViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { @@ -4274,7 +4743,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4289,7 +4758,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4300,21 +4769,17 @@ }, { "ParameterMetadata": { - "Name": "ContinueRequestBody", + "Name": "JsonFilePath", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Response": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", - "StepId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -4327,7 +4792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4342,7 +4807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4357,7 +4822,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4373,7 +4838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4389,7 +4854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4404,7 +4869,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4419,7 +4884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4434,7 +4899,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4446,41 +4929,46 @@ ] }, { - "Name": "ContinueViaIdentityExpanded", + "Name": "ContinueExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Scope", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TroubleshooterName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Response", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse" }, "ValidateNotNullOrEmpty": false }, @@ -4495,7 +4983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4514,7 +5002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4529,7 +5017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4544,7 +5032,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4560,7 +5048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4576,7 +5064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4591,7 +5079,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4606,7 +5094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4621,7 +5109,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4633,42 +5139,47 @@ ] }, { - "Name": "ContinueViaIdentity", + "Name": "Continue", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Scope", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TroubleshooterName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "ContinueRequestBody", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IContinueRequestBody, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Response": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", + "Response": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse]", "StepId": "System.String" } }, @@ -4689,7 +5200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4704,7 +5215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4719,7 +5230,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4735,7 +5246,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4751,7 +5262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4766,7 +5277,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4781,7 +5292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4796,7 +5307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4804,23 +5315,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4828,46 +5333,45 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ContinueViaIdentityExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "Break", + "Name": "InputObject", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Response", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse" }, "ValidateNotNullOrEmpty": false }, @@ -4878,11 +5382,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "StepId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4893,11 +5397,15 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4908,11 +5416,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4923,11 +5431,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -4935,201 +5444,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Invoke", - "NounName": "AzSelfHelpDiscoverySolutionNlpSubscriptionScope", - "Name": "Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope", - "ClassName": "Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "PostExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RelatedService": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]", - "Solution": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]", - "ProblemClassificationId": "System.String", - "ProblemDescription": "System.String", - "ProblemTitle": "System.String", - "ServiceId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DiscoverSolutionRequest", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalContext": "System.String", - "IssueSummary": "System.String", - "ResourceId": "System.String", - "ServiceId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AdditionalContext", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IssueSummary", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "PostExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -5140,11 +5463,11 @@ }, { "ParameterMetadata": { - "Name": "AdditionalContext", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5155,11 +5478,11 @@ }, { "ParameterMetadata": { - "Name": "IssueSummary", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5170,11 +5493,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5185,11 +5508,11 @@ }, { "ParameterMetadata": { - "Name": "ServiceId", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5200,107 +5523,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5312,35 +5542,43 @@ ] }, { - "Name": "Post", + "Name": "ContinueViaIdentity", "Parameters": [ { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DiscoverSolutionRequest", + "Name": "ContinueRequestBody", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IContinueRequestBody, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AdditionalContext": "System.String", - "IssueSummary": "System.String", - "ResourceId": "System.String", - "ServiceId": "System.String" + "Response": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse]", + "StepId": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -5360,7 +5598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5375,7 +5613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5390,7 +5628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5406,7 +5644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5418,41 +5656,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5460,44 +5668,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "PostViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AdditionalContext", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5508,11 +5686,11 @@ }, { "ParameterMetadata": { - "Name": "IssueSummary", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5523,11 +5701,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5538,11 +5716,14 @@ }, { "ParameterMetadata": { - "Name": "ServiceId", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5550,7 +5731,12 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5561,7 +5747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5576,7 +5762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5591,7 +5777,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5607,7 +5793,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5619,11 +5805,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5634,11 +5820,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5649,11 +5835,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5661,58 +5847,248 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "PostViaIdentity", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DiscoverSolutionRequest", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalContext": "System.String", - "IssueSummary": "System.String", - "ResourceId": "System.String", - "ServiceId": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + } + ] + }, + { + "VerbName": "Invoke", + "NounName": "AzSelfHelpDiscoverySolutionNlpSubscriptionScope", + "Name": "Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope", + "ClassName": "Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "PostExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Value": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource]" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DiscoverSolutionRequest", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditionalContext": "System.String", + "IssueSummary": "System.String", + "ResourceId": "System.String", + "ServiceId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AdditionalContext", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IssueSummary", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5723,7 +6099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5738,7 +6114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5753,7 +6129,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5769,7 +6145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5785,7 +6161,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5800,7 +6176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5815,7 +6191,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5827,8 +6221,44 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "Post", "Parameters": [ + { + "ParameterMetadata": { + "Name": "DiscoverSolutionRequest", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditionalContext": "System.String", + "IssueSummary": "System.String", + "ResourceId": "System.String", + "ServiceId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5839,7 +6269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5854,7 +6284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5869,7 +6299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5885,7 +6315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5901,7 +6331,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5916,7 +6346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5931,7 +6361,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5941,183 +6389,83 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Invoke", - "NounName": "AzSelfHelpDiscoverySolutionNlpTenantScope", - "Name": "Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope", - "ClassName": "Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "PostExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionNlpMetadataResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RelatedService": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]", - "Solution": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]", - "ProblemClassificationId": "System.String", - "ProblemDescription": "System.String", - "ProblemTitle": "System.String", - "ServiceId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "DiscoverSolutionRequest", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalContext": "System.String", - "IssueSummary": "System.String", - "ResourceId": "System.String", - "ServiceId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AdditionalContext", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IssueSummary", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Post", + "Name": "PostExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "DiscoverSolutionRequest", + "Name": "AdditionalContext", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalContext": "System.String", - "IssueSummary": "System.String", - "ResourceId": "System.String", - "ServiceId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IssueSummary", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -6130,7 +6478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6145,7 +6493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6160,7 +6508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6176,7 +6524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6192,7 +6540,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6207,7 +6555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6222,27 +6570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "PostExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AdditionalContext", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6253,11 +6581,14 @@ }, { "ParameterMetadata": { - "Name": "IssueSummary", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6265,29 +6596,34 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "PostViaJsonFilePath", + "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceId", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6306,7 +6642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6321,7 +6657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6336,7 +6672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6352,7 +6688,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6368,7 +6704,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6383,7 +6719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6398,7 +6734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6406,23 +6742,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6430,29 +6760,83 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "PostViaJsonString", + "Parameters": [ { "ParameterMetadata": { - "Name": "Break", + "Name": "JsonString", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6468,7 +6852,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6484,7 +6868,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6499,7 +6883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6514,7 +6898,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6529,19 +6931,22 @@ }, { "VerbName": "Invoke", - "NounName": "AzSelfHelpWarmSolutionUp", - "Name": "Invoke-AzSelfHelpWarmSolutionUp", - "ClassName": "Invoke-AzSelfHelpWarmSolutionUp", + "NounName": "AzSelfHelpDiscoverySolutionNlpTenantScope", + "Name": "Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope", + "ClassName": "Invoke-AzSelfHelpDiscoverySolutionNlpTenantScope", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "WarmExpanded", + "DefaultParameterSetName": "PostExpanded", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpResponse, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Value": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource]" + } }, "ParameterSets": [ "__AllParameterSets" @@ -6550,60 +6955,71 @@ ], "Parameters": [ { - "Name": "Scope", + "Name": "DiscoverSolutionRequest", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditionalContext": "System.String", + "IssueSummary": "System.String", + "ResourceId": "System.String", + "ServiceId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AdditionalContext", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SolutionResourceName", + "Name": "IssueSummary", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SolutionWarmUpRequestBody", + "Name": "ServiceId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Parameter", + "Name": "JsonFilePath", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6616,7 +7032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6625,7 +7041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6634,7 +7050,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6644,26 +7060,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6672,7 +7079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6681,58 +7088,46 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "WarmExpanded", + "Name": "Post", "Parameters": [ { "ParameterMetadata": { - "Name": "Scope", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SolutionResourceName", + "Name": "DiscoverSolutionRequest", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiscoveryNlpRequest, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditionalContext": "System.String", + "IssueSummary": "System.String", + "ResourceId": "System.String", + "ServiceId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Parameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -6745,7 +7140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6760,7 +7155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6775,7 +7170,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6791,7 +7186,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6803,11 +7198,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6818,11 +7213,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6833,11 +7228,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6848,11 +7243,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6864,54 +7262,66 @@ ] }, { - "Name": "Warm", + "Name": "PostExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "Scope", + "Name": "AdditionalContext", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SolutionResourceName", + "Name": "IssueSummary", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SolutionWarmUpRequestBody", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -6924,7 +7334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6939,7 +7349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6954,7 +7364,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6970,7 +7380,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6980,28 +7390,13 @@ "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.2.21.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7016,7 +7411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7031,7 +7426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7039,48 +7434,41 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "WarmViaIdentityExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "PostViaJsonFilePath", + "Parameters": [ { "ParameterMetadata": { - "Name": "Parameter", + "Name": "JsonFilePath", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -7095,7 +7483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7110,7 +7498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7125,7 +7513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7141,7 +7529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7153,11 +7541,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7168,11 +7556,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7183,11 +7571,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7198,11 +7586,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7214,49 +7605,21 @@ ] }, { - "Name": "WarmViaIdentity", + "Name": "PostViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SolutionWarmUpRequestBody", + "Name": "JsonString", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBody, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -7269,7 +7632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7284,7 +7647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7299,7 +7662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7315,7 +7678,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7327,11 +7690,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7342,11 +7705,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7357,11 +7720,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7372,11 +7735,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7400,7 +7766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7415,7 +7781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7430,7 +7796,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7446,7 +7812,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7458,11 +7824,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7473,11 +7839,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7488,11 +7854,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7503,11 +7869,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7521,27 +7890,20 @@ ] }, { - "VerbName": "New", - "NounName": "AzSelfHelpDiagnostic", - "Name": "New-AzSelfHelpDiagnostic", - "ClassName": "New-AzSelfHelpDiagnostic", + "VerbName": "Invoke", + "NounName": "AzSelfHelpWarmSolutionUp", + "Name": "Invoke-AzSelfHelpWarmSolutionUp", + "ClassName": "Invoke-AzSelfHelpWarmSolutionUp", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", + "DefaultParameterSetName": "WarmExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Diagnostic": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]", - "Insight": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]", - "GlobalParameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState]", - "AcceptedAt": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -7550,42 +7912,78 @@ ], "Parameters": [ { - "Name": "SResourceName", - "AliasList": [ - "DiagnosticsResourceName" - ], + "Name": "Scope", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Scope", + "Name": "SolutionResourceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "GlobalParameter", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SolutionWarmUpRequestBody", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Parameter", "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Insight", + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7598,16 +7996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7616,7 +8005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7625,7 +8014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7635,17 +8024,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7654,7 +8043,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7663,7 +8052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7672,25 +8061,34 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "WarmViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "SResourceName", - "AliasList": [ - "DiagnosticsResourceName" - ], + "Name": "Scope", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7701,11 +8099,11 @@ }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "SolutionResourceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7716,31 +8114,15 @@ }, { "ParameterMetadata": { - "Name": "GlobalParameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Insight", + "Name": "JsonString", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -7755,22 +8137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7785,7 +8152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7800,7 +8167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7816,7 +8183,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7828,11 +8195,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7847,7 +8214,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7862,7 +8229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7877,7 +8244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7885,197 +8252,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzSelfHelpSimplifiedSolution", - "Name": "New-AzSelfHelpSimplifiedSolution", - "ClassName": "New-AzSelfHelpSimplifiedSolution", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Appendix": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]", - "Content": "System.String", - "SolutionId": "System.String", - "Title": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SResourceName", - "AliasList": [ - "SimplifiedSolutionsResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Parameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SolutionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SResourceName", + "Name": "ProgressAction", "AliasList": [ - "SimplifiedSolutionsResourceName" + "proga" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "WarmViaJsonFilePath", + "Parameters": [ { "ParameterMetadata": { "Name": "Scope", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8086,30 +8293,30 @@ }, { "ParameterMetadata": { - "Name": "Parameter", + "Name": "SolutionResourceName", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SolutionId", + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -8124,22 +8331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8154,7 +8346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8169,7 +8361,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8185,7 +8377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8197,11 +8389,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8216,7 +8408,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8231,7 +8423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8246,7 +8438,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8256,189 +8466,17 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzSelfHelpSolution", - "Name": "New-AzSelfHelpSolution", - "ClassName": "New-AzSelfHelpSolution", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ReplacementMapMetricsBasedChart": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]", - "Section": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters", - "ReplacementMapDiagnostic": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]", - "ReplacementMapTroubleshooter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]", - "TriggerCriterion": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "ReplacementMapVideo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "ReplacementMapVideoGroup": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "ReplacementMapWebResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]", - "Content": "System.String", - "Location": "System.String", - "SolutionId": "System.String", - "Title": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceName", - "AliasList": [ - "SolutionResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "Parameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TriggerCriterion", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "WarmExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceName", - "AliasList": [ - "SolutionResourceName" - ], + "Name": "Scope", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8449,11 +8487,11 @@ }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "SolutionResourceName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8468,23 +8506,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TriggerCriterion", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8503,22 +8525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8533,7 +8540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8548,7 +8555,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8564,7 +8571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8576,11 +8583,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8595,7 +8602,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8610,7 +8617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8625,7 +8632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8633,177 +8640,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzSelfHelpTroubleshooter", - "Name": "New-AzSelfHelpTroubleshooter", - "ClassName": "New-AzSelfHelpTroubleshooter", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Step": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState]", - "SolutionId": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "TroubleshooterName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Parameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SolutionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ProgressAction", "AliasList": [ - "TroubleshooterName" + "proga" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Scope", + } + ] + }, + { + "Name": "Warm", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Scope", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8814,32 +8681,35 @@ }, { "ParameterMetadata": { - "Name": "Parameter", + "Name": "SolutionResourceName", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SolutionId", + "Name": "SolutionWarmUpRequestBody", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -8852,7 +8722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8867,7 +8737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8882,7 +8752,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8898,7 +8768,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8908,13 +8778,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8929,7 +8814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8944,7 +8829,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8954,178 +8857,46 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Restart", - "NounName": "AzSelfHelpTroubleshooter", - "Name": "Restart-AzSelfHelpTroubleshooter", - "ClassName": "Restart-AzSelfHelpTroubleshooter", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Restart", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IRestartTroubleshooterResponse, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Location": "System.String", - "TroubleshooterResourceName": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "TroubleshooterName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Restart", + "Name": "WarmViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "TroubleshooterName" - ], + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "Parameter", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -9140,7 +8911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9155,7 +8926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9170,7 +8941,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9186,7 +8957,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9196,13 +8967,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9217,7 +9003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9232,7 +9018,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9244,7 +9048,7 @@ ] }, { - "Name": "RestartViaIdentity", + "Name": "WarmViaIdentity", "Parameters": [ { "ParameterMetadata": { @@ -9252,7 +9056,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -9273,19 +9077,37 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "SolutionWarmUpRequestBody", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBody, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -9296,7 +9118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9311,7 +9133,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9327,7 +9149,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9337,13 +9159,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9358,7 +9195,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9373,7 +9210,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9397,7 +9252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9412,7 +9267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9427,7 +9282,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9443,7 +9298,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9453,13 +9308,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9474,7 +9344,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9489,7 +9359,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9503,20 +9391,27 @@ ] }, { - "VerbName": "Stop", - "NounName": "AzSelfHelpTroubleshooter", - "Name": "Stop-AzSelfHelpTroubleshooter", - "ClassName": "Stop-AzSelfHelpTroubleshooter", + "VerbName": "New", + "NounName": "AzSelfHelpDiagnostic", + "Name": "New-AzSelfHelpDiagnostic", + "ClassName": "New-AzSelfHelpDiagnostic", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "End", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "GlobalParameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters", + "Diagnostic": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic]", + "Insight": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation]", + "AcceptedAt": "System.String", + "ProvisioningState": "System.String" + } }, "ParameterSets": [ "__AllParameterSets" @@ -9525,14 +9420,14 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "SResourceName", "AliasList": [ - "TroubleshooterName" + "DiagnosticsResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9541,7 +9436,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9550,7 +9445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -9564,6 +9459,43 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "GlobalParameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Insight", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -9573,7 +9505,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9582,7 +9523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9591,7 +9532,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9601,17 +9542,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9620,7 +9561,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9629,7 +9570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9638,25 +9579,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "End", + "Name": "CreateViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "SResourceName", "AliasList": [ - "TroubleshooterName" + "DiagnosticsResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9671,7 +9624,22 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9690,7 +9658,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9705,7 +9688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9720,7 +9703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9736,7 +9719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9748,11 +9731,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9767,7 +9750,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9782,7 +9765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9797,7 +9780,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9809,31 +9810,54 @@ ] }, { - "Name": "EndViaIdentity", + "Name": "CreateViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "SResourceName", + "AliasList": [ + "DiagnosticsResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -9846,7 +9870,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9861,7 +9900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9876,7 +9915,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9892,7 +9931,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9904,11 +9943,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9923,7 +9962,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9938,7 +9977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9953,7 +9992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9961,23 +10000,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9985,46 +10018,52 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CreateExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "Break", + "Name": "SResourceName", + "AliasList": [ + "DiagnosticsResourceName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Scope", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "GlobalParameter", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10035,11 +10074,12 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Insight", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation" }, "ValidateNotNullOrEmpty": false }, @@ -10050,11 +10090,15 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10065,11 +10109,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10080,11 +10124,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10092,240 +10136,46 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzSelfHelpSolution", - "Name": "Update-AzSelfHelpSolution", - "ClassName": "Update-AzSelfHelpSolution", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResource, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ReplacementMapMetricsBasedChart": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]", - "Section": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]", - "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters", - "ReplacementMapDiagnostic": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]", - "ReplacementMapTroubleshooter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]", - "TriggerCriterion": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "ReplacementMapVideo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "ReplacementMapVideoGroup": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "ReplacementMapWebResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]", - "Content": "System.String", - "Location": "System.String", - "SolutionId": "System.String", - "Title": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceName", - "AliasList": [ - "SolutionResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiagnosticsResourceName": "System.String", - "Id": "System.String", - "Scope": "System.String", - "SimplifiedSolutionsResourceName": "System.String", - "SolutionId": "System.String", - "SolutionResourceName": "System.String", - "SubscriptionId": "System.String", - "TroubleshooterName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Parameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TriggerCriterion", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceName", - "AliasList": [ - "SolutionResourceName" - ], + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Parameter", + "Name": "NoWait", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10336,46 +10186,11 @@ }, { "ParameterMetadata": { - "Name": "TriggerCriterion", + "Name": "Proxy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" - }, - "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10386,43 +10201,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10433,41 +10216,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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=6.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10478,11 +10231,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10494,7 +10250,7 @@ ] }, { - "Name": "UpdateViaIdentityExpanded", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { @@ -10502,7 +10258,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DiagnosticsResourceName": "System.String", "Id": "System.String", @@ -10523,11 +10279,11 @@ }, { "ParameterMetadata": { - "Name": "Parameter", + "Name": "GlobalParameter", "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10538,12 +10294,12 @@ }, { "ParameterMetadata": { - "Name": "TriggerCriterion", + "Name": "Insight", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation" }, "ValidateNotNullOrEmpty": false }, @@ -10562,7 +10318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10577,7 +10333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10592,7 +10348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10607,7 +10363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10623,7 +10379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10639,7 +10395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10654,7 +10410,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10669,7 +10425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10684,27 +10440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Parameter", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10715,12 +10451,14 @@ }, { "ParameterMetadata": { - "Name": "TriggerCriterion", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10728,7 +10466,12 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -10739,7 +10482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10754,7 +10497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10769,7 +10512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10784,7 +10527,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10800,7 +10543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10816,7 +10559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10831,7 +10574,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10846,7 +10589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10861,7 +10604,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10873,1553 +10634,6747 @@ ] } ] - } - ], - "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.SelfHelp.Models.Api20240301Preview.IDiagnostic[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnostic, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]", - "Insight": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]", - "Status": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status]", - "Code": "System.String", - "Message": "System.String", - "SolutionId": "System.String", - "Type": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IError[]", - "Code": "System.String", - "Message": "System.String", - "Type": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ImportanceLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel]", - "Id": "System.String", - "Result": "System.String", - "Title": "System.String" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel" - ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ImportanceLevel, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + { + "VerbName": "New", + "NounName": "AzSelfHelpSimplifiedSolution", + "Name": "New-AzSelfHelpSimplifiedSolution", + "ClassName": "New-AzSelfHelpSimplifiedSolution", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ { - "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.SelfHelp.Support.ImportanceLevel" + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Appendix": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix", + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters", + "Content": "System.String", + "ProvisioningState": "System.String", + "SolutionId": "System.String", + "Title": "System.String" } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SResourceName", + "AliasList": [ + "SimplifiedSolutionsResourceName" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + "Name": "SolutionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { - "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": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status" - } - ], - "ReturnType": "System.Boolean" + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocation, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalParameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters", - "SolutionId": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticInvocationAdditionalParameters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IDiagnosticResourcePropertiesGlobalParameters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, { - "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": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.DiagnosticProvisioningState" - } - ], - "ReturnType": "System.Boolean" + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Target": "System.Object", - "Method": "System.Reflection.MethodInfo" - }, - "Methods": [ + ], + "ParameterSets": [ { - "Name": "Invoke", + "Name": "CreateViaJsonString", "Parameters": [ { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" + "ParameterMetadata": { + "Name": "SResourceName", + "AliasList": [ + "SimplifiedSolutionsResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener" + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync" - } - ], - "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" - }, - { - "Name": "BeginInvoke", - "Parameters": [ + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener" + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "__callback", - "Type": "System.AsyncCallback" + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "object", - "Type": "System.Object" - } - ], - "ReturnType": "System.IAsyncResult" - }, - { - "Name": "EndInvoke", - "Parameters": [ + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "result", - "Type": "System.IAsyncResult" - } - ], - "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" - }, - { - "Name": "GetObjectData", - "Parameters": [ + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "info", - "Type": "System.Runtime.Serialization.SerializationInfo" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "context", - "Type": "System.Runtime.Serialization.StreamingContext" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetInvocationList", - "ReturnType": "System.Delegate[]" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "Clone", - "ReturnType": "System.Object" + ] }, { - "Name": "DynamicInvoke", + "Name": "CreateViaJsonFilePath", "Parameters": [ { - "Name": "args", - "Type": "System.Object[]" - } - ], - "ReturnType": "System.Object" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - } - ], - "Constructors": [ + "ParameterMetadata": { + "Name": "SResourceName", + "AliasList": [ + "SimplifiedSolutionsResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SResourceName", + "AliasList": [ + "SimplifiedSolutionsResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SolutionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SolutionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzSelfHelpSolution", + "Name": "New-AzSelfHelpSolution", + "ClassName": "New-AzSelfHelpSolution", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters", + "ReplacementMapMetricsBasedChart": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart]", + "Section": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection]", + "ReplacementMapDiagnostic": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic]", + "ReplacementMapTroubleshooter": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters]", + "TriggerCriterion": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion]", + "ReplacementMapVideo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "ReplacementMapVideoGroup": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "ReplacementMapWebResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", + "Content": "System.String", + "Location": "System.String", + "ProvisioningState": "System.String", + "SolutionId": "System.String", + "Title": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TriggerCriterion", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "CreateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerCriterion", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerCriterion", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzSelfHelpTroubleshooter", + "Name": "New-AzSelfHelpTroubleshooter", + "ClassName": "New-AzSelfHelpTroubleshooter", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters", + "Step": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep]", + "ProvisioningState": "System.String", + "SolutionId": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SolutionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "CreateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SolutionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SolutionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Restart", + "NounName": "AzSelfHelpTroubleshooter", + "Name": "Restart-AzSelfHelpTroubleshooter", + "ClassName": "Restart-AzSelfHelpTroubleshooter", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Restart", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IRestartTroubleshooterResponse, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Location": "System.String", + "TroubleshooterResourceName": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Restart", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Stop", + "NounName": "AzSelfHelpTroubleshooter", + "Name": "Stop-AzSelfHelpTroubleshooter", + "ClassName": "Stop-AzSelfHelpTroubleshooter", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "End", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "End", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "TroubleshooterName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "EndViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Update", + "NounName": "AzSelfHelpSolution", + "Name": "Update-AzSelfHelpSolution", + "ClassName": "Update-AzSelfHelpSolution", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Parameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters", + "ReplacementMapMetricsBasedChart": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart]", + "Section": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection]", + "ReplacementMapDiagnostic": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic]", + "ReplacementMapTroubleshooter": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters]", + "TriggerCriterion": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion]", + "ReplacementMapVideo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "ReplacementMapVideoGroup": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "ReplacementMapWebResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", + "Content": "System.String", + "Location": "System.String", + "ProvisioningState": "System.String", + "SolutionId": "System.String", + "Title": "System.String" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TriggerCriterion", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceName", + "AliasList": [ + "SolutionResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerCriterion", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, { - "Name": "", + "Name": "UpdateViaIdentityExpanded", "Parameters": [ { - "Name": "object", - "Type": "System.Reflection.RuntimeParameterInfo" + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISelfHelpIdentity, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DiagnosticsResourceName": "System.String", + "Id": "System.String", + "Scope": "System.String", + "SimplifiedSolutionsResourceName": "System.String", + "SolutionId": "System.String", + "SolutionResourceName": "System.String", + "SubscriptionId": "System.String", + "TroubleshooterName": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Parameter", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TriggerCriterion", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" + }, + "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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "method", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "System.Object": { - "Namespace": "System", - "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "System.IAsyncResult": { - "Namespace": "System", - "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Delegate[]": { - "Namespace": "System", - "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Delegate" - }, - "System.Delegate": { - "Namespace": "System", - "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionMetadataProperties, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType]", - "Description": "System.String", - "SolutionId": "System.String", - "RequiredInput": "System.String[]" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + ] }, { - "Name": "Equals", + "Name": "__AllParameterSets", "Parameters": [ { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "System.String[]": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesAppendix, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISimplifiedSolutionsResourcePropertiesParameters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.SolutionProvisioningState, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep[], Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.SelfHelp.Support.SolutionProvisioningState" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" + ] } ] + } + ], + "TypeDictionary": { + "System.String": { + "Name": "System.String" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart" + "System.Boolean": { + "Name": "System.Boolean" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FilterGroupFilter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]", - "AggregationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType]", - "Name": "System.String", - "ReplacementKey": "System.String", - "TimeSpanDuration": "System.String", - "Title": "System.String" - } + "System.Byte": { + "Name": "System.Byte" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter" + "System.SByte": { + "Name": "System.SByte" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IFilter, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "Operator": "System.String", - "Value": "System.String" - } + "System.Int16": { + "Name": "System.Int16" }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType" - ] + "System.UInt16": { + "Name": "System.UInt16" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AggregationType, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.AggregationType" - } - ], - "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.Int32": { + "Name": "System.Int32" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection" + "System.UInt32": { + "Name": "System.UInt32" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISection, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ReplacementMapMetricsBasedChart": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IMetricsBasedChart[]", - "ReplacementMapDiagnostic": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]", - "ReplacementMapTroubleshooter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]", - "ReplacementMapVideo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "ReplacementMapVideoGroup": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "ReplacementMapWebResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", - "Content": "System.String", - "Title": "System.String" - } + "System.Int64": { + "Name": "System.Int64" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic" + "System.UInt64": { + "Name": "System.UInt64" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsDiagnostic, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Insight": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]", - "Status": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Status]", - "EstimatedCompletionTime": "System.String", - "ReplacementKey": "System.String", - "SolutionId": "System.String", - "StatusDetail": "System.String", - "RequiredParameter": "System.String[]" - } + "System.Single": { + "Name": "System.Single" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters" + "System.Double": { + "Name": "System.Double" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionsTroubleshooters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SolutionId": "System.String", - "Summary": "System.String", - "Title": "System.String" - } + "System.Decimal": { + "Name": "System.Decimal" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo" + "System.Char": { + "Name": "System.Char" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ReplacementKey": "System.String" - } + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticResourcePropertiesGlobalParameters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnostic, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Video": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[]", - "ReplacementKey": "System.String" + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError]", + "Insight": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight]", + "Code": "System.String", + "Message": "System.String", + "SolutionId": "System.String", + "Status": "System.String", + "Type": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroupVideo, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Src": "System.String", - "Title": "System.String" + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IError]", + "Code": "System.String", + "Message": "System.String", + "Type": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SearchResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[]", - "ReplacementKey": "System.String" + "Id": "System.String", + "ImportanceLevel": "System.String", + "Result": "System.String", + "Title": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISearchResult, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocation, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Confidence": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence]", - "ResultType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType]", - "Rank": "System.Nullable`1[System.Int32]", - "Content": "System.String", - "Link": "System.String", - "SolutionId": "System.String", - "Source": "System.String", - "Title": "System.String" + "AdditionalParameter": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters", + "SolutionId": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence" - ] + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IDiagnosticInvocationAdditionalParameters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.SendAsyncStep, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Target": "System.Object", + "Method": "System.Reflection.MethodInfo" + }, "Methods": [ { - "Name": "CompleteArgument", + "Name": "Invoke", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener" }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync" } ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "Equals", + "Name": "BeginInvoke", "Parameters": [ { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Confidence" + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Runtime.ISendAsync" + }, + { + "Name": "__callback", + "Type": "System.AsyncCallback" + }, + { + "Name": "object", + "Type": "System.Object" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.IAsyncResult" }, { - "Name": "Equals", + "Name": "EndInvoke", "Parameters": [ { - "Name": "obj", - "Type": "System.Object" + "Name": "result", + "Type": "System.IAsyncResult" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "GetObjectData", "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": "info", + "Type": "System.Runtime.Serialization.SerializationInfo" }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" + "Name": "context", + "Type": "System.Runtime.Serialization.StreamingContext" } ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + "ReturnType": "System.Void" }, { "Name": "Equals", "Parameters": [ { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ResultType" + "Name": "obj", + "Type": "System.Object" } ], "ReturnType": "System.Boolean" }, { - "Name": "Equals", + "Name": "GetInvocationList", + "ReturnType": "System.Delegate[]" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + }, + { + "Name": "Clone", + "ReturnType": "System.Object" + }, + { + "Name": "DynamicInvoke", "Parameters": [ { - "Name": "obj", - "Type": "System.Object" + "Name": "args", + "Type": "System.Object[]" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.Object" }, { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + "Name": "GetType", + "ReturnType": "System.Type" }, { "Name": "ToString", "ReturnType": "System.String" - }, + } + ], + "Constructors": [ { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "", + "Parameters": [ + { + "Name": "object", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "method", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, - "System.Nullable`1[System.Int32]": { + "System.Object": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Int32" + "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=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "System.IAsyncResult": { + "Namespace": "System", + "Name": "System.IAsyncResult", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Delegate[]": { + "Namespace": "System", + "Name": "System.Delegate[]", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Delegate" + }, + "System.Delegate": { + "Namespace": "System", + "Name": "System.Delegate", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties" + ] + }, + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RequiredInput": "System.Collections.Generic.List`1[System.String]", + "Description": "System.String", + "SolutionId": "System.String", + "SolutionType": "System.String" + } + }, + "System.Collections.Generic.List`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesAppendix, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISimplifiedSolutionsResourcePropertiesParameters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionResourcePropertiesParameters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionResourcePropertiesParameters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FilterGroupFilter": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter]", + "AggregationType": "System.String", + "Name": "System.String", + "ReplacementKey": "System.String", + "TimeSpanDuration": "System.String", + "Title": "System.String" + } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITriggerCriterion, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IFilter, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name]", + "Name": "System.String", + "Operator": "System.String", "Value": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Name, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.Name" - } - ], - "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.SelfHelp.Models.ISection": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISection, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ReplacementMapMetricsBasedChart": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IMetricsBasedChart]", + "ReplacementMapDiagnostic": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic]", + "ReplacementMapTroubleshooter": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters]", + "ReplacementMapVideo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "ReplacementMapVideoGroup": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "ReplacementMapWebResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", + "Content": "System.String", + "Title": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsDiagnostic, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Insight": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight]", + "RequiredParameter": "System.Collections.Generic.List`1[System.String]", + "EstimatedCompletionTime": "System.String", + "ReplacementKey": "System.String", + "SolutionId": "System.String", + "Status": "System.String", + "StatusDetail": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISectionSelfHelp, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionsTroubleshooters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ReplacementMapVideo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideo[]", - "ReplacementMapVideoGroup": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IVideoGroup[]", - "ReplacementMapWebResult": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IWebResult[]", - "Content": "System.String", + "SolutionId": "System.String", + "Summary": "System.String", "Title": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStep, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Insight": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IInsight[]", - "Input": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[]", - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]", - "AutomatedCheckResultType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType]", - "ExecutionStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus]", - "Type": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type]", - "IsLastStep": "System.Nullable`1[System.Boolean]", - "Code": "System.String", - "AutomatedCheckResultsResult": "System.String", - "Title": "System.String", - "Guidance": "System.String", - "Id": "System.String", - "AutomatedCheckResultVersion": "System.String", - "AutomatedCheckResultStatus": "System.String", - "Message": "System.String", - "Target": "System.String", - "Description": "System.String", - "ExecutionStatusDescription": "System.String" + "ReplacementKey": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IStepInput, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ResponseOption": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[]", - "QuestionContentType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType]", - "QuestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType]", - "ResponseValidationPropertyValidationScope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope]", - "ResponseValidationPropertyIsRequired": "System.Nullable`1[System.Boolean]", - "ResponseValidationPropertyMaxLength": "System.Nullable`1[System.Int64]", - "QuestionContent": "System.String", - "QuestionId": "System.String", - "QuestionTitle": "System.String", - "RecommendedOption": "System.String", - "ResponseHint": "System.String", - "ResponseValidationPropertyRegex": "System.String", - "ResponseValidationPropertyValidationErrorMessage": "System.String", - "SelectedOptionValue": "System.String" + "Video": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo]", + "ReplacementKey": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IResponseOption, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroupVideo, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Key": "System.String", - "Value": "System.String" + "Src": "System.String", + "Title": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionContentType, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.QuestionContentType" - } - ], - "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.SelfHelp.Models.IWebResult": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SearchResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult]", + "ReplacementKey": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult" ] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType]": { + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISearchResult, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Rank": "System.Nullable`1[System.Int32]", + "Confidence": "System.String", + "Content": "System.String", + "Link": "System.String", + "ResultType": "System.String", + "SolutionId": "System.String", + "Source": "System.String", + "Title": "System.String" + } + }, + "System.Nullable`1[System.Int32]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType" + "System.Int32" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.QuestionType" - } - ], - "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.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion" ] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITriggerCriterion, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Name": "System.String", + "Value": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ValidationScope, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.ValidationScope" - } - ], - "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.SelfHelp.Models.ISectionSelfHelp": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISectionSelfHelp, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ReplacementMapVideo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideo]", + "ReplacementMapVideoGroup": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IVideoGroup]", + "ReplacementMapWebResult": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IWebResult]", + "Content": "System.String", + "Title": "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterInstancePropertiesParameters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep" ] }, - "System.Nullable`1[System.Int64]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStep, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail]", + "Insight": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IInsight]", + "Input": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput]", + "IsLastStep": "System.Nullable`1[System.Boolean]", + "Target": "System.String", + "Message": "System.String", + "Id": "System.String", + "Guidance": "System.String", + "ExecutionStatusDescription": "System.String", + "ExecutionStatus": "System.String", + "Description": "System.String", + "Code": "System.String", + "AutomatedCheckResultVersion": "System.String", + "AutomatedCheckResultType": "System.String", + "AutomatedCheckResultStatus": "System.String", + "AutomatedCheckResult": "System.String", + "Title": "System.String", + "Type": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Int64" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Info": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny", "Type": "System.String" @@ -12428,359 +17383,151 @@ "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IAny, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api40.IErrorDetail[]", + "AdditionalInfo": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorAdditionalInfo]", + "Detail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IErrorDetail]", "Code": "System.String", "Message": "System.String", "Target": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.AutomatedCheckResultType, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.AutomatedCheckResultType" - } - ], - "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.SelfHelp.Models.IStepInput": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IStepInput, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ResponseOption": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption]", + "ResponseValidationPropertyIsRequired": "System.Nullable`1[System.Boolean]", + "ResponseValidationPropertyMaxLength": "System.Nullable`1[System.Int64]", + "QuestionContent": "System.String", + "QuestionContentType": "System.String", + "QuestionId": "System.String", + "QuestionTitle": "System.String", + "QuestionType": "System.String", + "RecommendedOption": "System.String", + "ResponseHint": "System.String", + "ResponseValidationPropertyRegex": "System.String", + "ResponseValidationPropertyValidationErrorMessage": "System.String", + "ResponseValidationPropertyValidationScope": "System.String", + "SelectedOptionValue": "System.String" + } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.ExecutionStatus, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.ExecutionStatus" - } - ], - "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.SelfHelp.Models.IResponseOption": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IResponseOption, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Key": "System.String", + "Value": "System.String" + } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type]": { + "System.Nullable`1[System.Boolean]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.Type, Az.SelfHelp.private, Version=0.2.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.SelfHelp.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.Boolean" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterInstancePropertiesParameters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState]": { + "System.Nullable`1[System.Int64]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState" + "System.Int64" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.TroubleshooterProvisioningState, Az.SelfHelp.private, Version=0.2.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.SelfHelp.Support.TroubleshooterProvisioningState" - } - ], - "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.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse" - }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ITroubleshooterResponse, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ITroubleshooterResponse, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "QuestionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Support.QuestionType]", "QuestionId": "System.String", + "QuestionType": "System.String", "Response": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService[], Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource" + ] + }, + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionNlpMetadataResource, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RelatedService": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService]", + "Solution": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionMetadataProperties]", + "ProblemClassificationId": "System.String", + "ProblemDescription": "System.String", + "ProblemTitle": "System.String", + "ServiceId": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.IClassificationService, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.IClassificationService, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "ResourceType": "System.Collections.Generic.List`1[System.String]", "DisplayName": "System.String", - "ServiceId": "System.String", - "ResourceType": "System.String[]" + "ServiceId": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.Api20240301Preview.ISolutionWarmUpRequestBodyParameters, Az.SelfHelp.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SelfHelp.Models.ISolutionWarmUpRequestBodyParameters, Az.SelfHelp.private, Version=0.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" } } } \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ServiceLinker.json b/tools/Tools.Common/SerializedCmdlets/Az.ServiceLinker.json index 4f2d05e19bca..8ab2c53c77b9 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.ServiceLinker.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.ServiceLinker.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.ServiceLinker", - "ModuleVersion": "0.2.3", + "ModuleVersion": "0.3.0", "Cmdlets": [ { "VerbName": "Get", @@ -14,9 +14,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISourceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISourceConfiguration, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -33,7 +33,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -42,7 +42,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -55,7 +55,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -64,7 +64,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -73,7 +73,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -82,7 +82,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -91,7 +91,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -100,7 +100,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -110,7 +110,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -120,7 +120,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -129,7 +129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -138,7 +138,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -153,7 +165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -168,7 +180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -187,7 +199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -202,7 +214,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -217,7 +229,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -232,7 +244,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -247,7 +259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -262,7 +274,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -278,7 +290,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -294,7 +306,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -309,7 +321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -324,7 +336,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -349,9 +379,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISourceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISourceConfiguration, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -368,7 +398,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -377,7 +407,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -390,7 +420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -399,7 +429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -408,7 +438,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -417,7 +447,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -426,7 +456,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -435,7 +465,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -444,7 +474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -453,7 +483,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -463,7 +493,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -473,7 +503,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -482,7 +512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -491,7 +521,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -506,7 +548,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -521,7 +563,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -540,7 +582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -555,7 +597,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -570,7 +612,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -585,7 +627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -600,7 +642,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -615,7 +657,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -630,7 +672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -645,7 +687,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -661,7 +703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -677,7 +719,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -692,7 +734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -707,7 +749,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -732,9 +792,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISourceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISourceConfiguration, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -751,7 +811,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -760,7 +820,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -773,7 +833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -782,7 +842,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -791,7 +851,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -800,7 +860,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -809,7 +869,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -818,7 +878,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -828,7 +888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -838,7 +898,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -847,7 +907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -856,7 +916,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -871,7 +943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -886,7 +958,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -905,7 +977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -920,7 +992,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -935,7 +1007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -950,7 +1022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -965,7 +1037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -980,7 +1052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -996,7 +1068,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1012,7 +1084,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1027,7 +1099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1042,7 +1114,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1067,13 +1157,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationNameItem", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationNameItem, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]", - "AuthType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName]", + "AuthType": "System.String", + "ClientType": "System.String", "TargetService": "System.String" } }, @@ -1088,7 +1178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1097,7 +1187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1110,7 +1200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1119,7 +1209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1128,7 +1218,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1138,7 +1228,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1148,7 +1238,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1157,7 +1247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1166,7 +1256,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1181,7 +1283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1196,7 +1298,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1215,7 +1317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1230,7 +1332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1245,7 +1347,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1261,7 +1363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1277,7 +1379,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1292,7 +1394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1307,7 +1409,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1332,28 +1452,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -1367,7 +1487,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1379,7 +1499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1388,7 +1508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -1411,7 +1531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1420,7 +1540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1429,7 +1549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1438,7 +1558,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1447,7 +1567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1456,7 +1576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1466,7 +1586,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1476,7 +1596,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1485,7 +1605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1494,7 +1614,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1509,7 +1641,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1527,7 +1659,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1542,7 +1674,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1557,7 +1689,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1576,7 +1708,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1591,7 +1723,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1606,7 +1738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1621,7 +1753,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1637,7 +1769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1653,7 +1785,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1668,7 +1800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1683,7 +1815,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1703,7 +1853,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1718,7 +1868,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1733,7 +1883,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1752,7 +1902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1767,7 +1917,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1782,7 +1932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1797,7 +1947,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1813,7 +1963,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1829,7 +1979,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1844,7 +1994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1859,7 +2009,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1879,7 +2047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -1908,7 +2076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1923,7 +2091,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1938,7 +2106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1953,7 +2121,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1969,7 +2137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1985,7 +2153,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2000,7 +2168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2015,7 +2183,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2039,7 +2225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2054,7 +2240,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2069,7 +2255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2084,7 +2270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2100,7 +2286,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2116,7 +2302,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2131,7 +2317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2146,7 +2332,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2171,28 +2375,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -2206,7 +2410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2218,7 +2422,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2227,7 +2431,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -2250,7 +2454,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2259,7 +2463,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2268,7 +2472,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2277,7 +2481,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2286,7 +2490,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2295,7 +2499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2304,7 +2508,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2313,7 +2517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2323,7 +2527,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2333,7 +2537,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2342,7 +2546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2351,7 +2555,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2366,7 +2582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2384,7 +2600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2399,7 +2615,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2414,7 +2630,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2429,7 +2645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2444,7 +2660,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2463,7 +2679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2478,7 +2694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2493,7 +2709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2508,7 +2724,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2524,7 +2740,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2540,7 +2756,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2555,7 +2771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2570,7 +2786,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2590,7 +2824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2605,7 +2839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2620,7 +2854,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2635,7 +2869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2650,7 +2884,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2669,7 +2903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2684,7 +2918,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2699,7 +2933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2714,7 +2948,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2730,7 +2964,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2746,7 +2980,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2761,7 +2995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2776,7 +3010,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2796,7 +3048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -2825,7 +3077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2840,7 +3092,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2855,7 +3107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2870,7 +3122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2886,7 +3138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2902,7 +3154,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2917,7 +3169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2932,7 +3184,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2956,7 +3226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2971,7 +3241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2986,7 +3256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3001,7 +3271,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3017,7 +3287,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3033,7 +3303,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3048,7 +3318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3063,7 +3333,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3088,28 +3376,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -3123,7 +3411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3135,7 +3423,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3144,7 +3432,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -3167,7 +3455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3176,7 +3464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3185,7 +3473,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3194,7 +3482,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3203,7 +3491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3212,7 +3500,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3222,7 +3510,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3232,7 +3520,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3241,7 +3529,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3250,7 +3538,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3265,7 +3565,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3283,7 +3583,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3298,7 +3598,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3313,7 +3613,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3332,7 +3632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3347,7 +3647,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3362,7 +3662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3377,7 +3677,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3393,7 +3693,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3409,7 +3709,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3424,7 +3724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3439,7 +3739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3447,19 +3747,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceUri", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceUri", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3474,7 +3792,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3489,7 +3807,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3508,7 +3826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3523,7 +3841,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3538,7 +3856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3553,7 +3871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3569,7 +3887,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3585,7 +3903,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3600,7 +3918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3615,7 +3933,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3635,7 +3971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -3664,7 +4000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3679,7 +4015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3694,7 +4030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3709,7 +4045,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3725,7 +4061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3741,7 +4077,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3756,7 +4092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3771,7 +4107,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3795,7 +4149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3810,7 +4164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3825,7 +4179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3840,7 +4194,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3856,7 +4210,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3872,7 +4226,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3887,7 +4241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3902,7 +4256,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3927,13 +4299,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.AzureResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.AzureResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ResourceProperty": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "Id": "System.String" + "ResourceProperty": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResourcePropertiesBase", + "Id": "System.String", + "Type": "System.String" }, "Methods": [ { @@ -3954,7 +4326,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource" }, { "Name": "ToJson", @@ -3978,7 +4350,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource" }, { "Name": "DeserializeFromPSObject", @@ -3988,7 +4360,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource" }, { "Name": "FromJsonString", @@ -3998,20 +4370,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -4044,7 +4416,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4053,16 +4425,28 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "Type", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4077,7 +4461,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4092,7 +4476,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4105,9 +4489,27 @@ "ParameterMetadata": { "Name": "Type", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4132,12 +4534,12 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ConfluentBootstrapServer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ConfluentBootstrapServer, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "Endpoint": "System.String" + "Endpoint": "System.String", + "Type": "System.String" }, "Methods": [ { @@ -4158,7 +4560,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer" }, { "Name": "ToJson", @@ -4182,7 +4584,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer" }, { "Name": "DeserializeFromPSObject", @@ -4192,7 +4594,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer" }, { "Name": "FromJsonString", @@ -4202,20 +4604,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -4248,16 +4650,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Type", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4272,7 +4677,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4283,11 +4688,14 @@ }, { "ParameterMetadata": { - "Name": "Type", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4312,12 +4720,12 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ConfluentSchemaRegistry", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ConfluentSchemaRegistry, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "Endpoint": "System.String" + "Endpoint": "System.String", + "Type": "System.String" }, "Methods": [ { @@ -4338,7 +4746,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry" }, { "Name": "ToJson", @@ -4362,7 +4770,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry" }, { "Name": "DeserializeFromPSObject", @@ -4372,7 +4780,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry" }, { "Name": "FromJsonString", @@ -4382,20 +4790,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -4428,16 +4836,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Type", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4452,7 +4863,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4463,11 +4874,14 @@ }, { "ParameterMetadata": { - "Name": "Type", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4492,28 +4906,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -4527,7 +4941,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4539,7 +4953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4548,18 +4962,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -4567,11 +4981,11 @@ { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -4579,18 +4993,18 @@ { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "ConfigurationInfoAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4599,7 +5013,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4608,25 +5022,25 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "FirewallRuleAzureService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "FirewallRuleCallerClientIP", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4635,7 +5049,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4643,9 +5057,9 @@ { "Name": "PublicNetworkSolutionAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4654,7 +5068,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4663,7 +5077,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4672,16 +5086,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4694,7 +5108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4703,7 +5117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4712,7 +5126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4721,7 +5135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4730,7 +5144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4739,7 +5153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4748,7 +5162,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4758,7 +5172,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4768,7 +5182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4777,7 +5191,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4786,7 +5200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4795,7 +5209,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4810,7 +5236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4828,7 +5254,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4843,7 +5269,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4856,11 +5282,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -4874,11 +5300,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -4892,9 +5318,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4907,9 +5333,9 @@ "ParameterMetadata": { "Name": "ConfigurationInfoAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4924,7 +5350,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4939,7 +5365,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4952,9 +5378,9 @@ "ParameterMetadata": { "Name": "FirewallRuleAzureService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4967,9 +5393,9 @@ "ParameterMetadata": { "Name": "FirewallRuleCallerClientIP", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4984,7 +5410,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4998,9 +5424,9 @@ "ParameterMetadata": { "Name": "PublicNetworkSolutionAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5015,7 +5441,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5030,7 +5456,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5045,7 +5471,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5058,9 +5484,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5079,7 +5505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5094,7 +5520,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5109,7 +5535,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5124,7 +5550,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5139,7 +5565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5154,7 +5580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5169,7 +5595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5185,7 +5611,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5201,7 +5627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5216,7 +5642,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5231,7 +5657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5246,7 +5672,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5271,28 +5715,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -5306,7 +5750,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5318,7 +5762,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5327,18 +5771,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -5346,11 +5790,11 @@ { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -5358,18 +5802,18 @@ { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "ConfigurationInfoAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5378,7 +5822,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5387,25 +5831,25 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "FirewallRuleAzureService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "FirewallRuleCallerClientIP", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5414,7 +5858,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5422,9 +5866,9 @@ { "Name": "PublicNetworkSolutionAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5433,7 +5877,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5442,7 +5886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5451,16 +5895,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5473,7 +5917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5482,7 +5926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5491,7 +5935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5500,7 +5944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5509,7 +5953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5518,7 +5962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5527,7 +5971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5536,7 +5980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5545,7 +5989,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5555,7 +5999,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5565,7 +6009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5574,7 +6018,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5583,7 +6027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5592,7 +6036,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5607,7 +6063,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5625,7 +6081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5640,7 +6096,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5653,11 +6109,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -5671,11 +6127,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -5689,9 +6145,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5704,9 +6160,9 @@ "ParameterMetadata": { "Name": "ConfigurationInfoAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5721,7 +6177,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5736,7 +6192,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5749,9 +6205,9 @@ "ParameterMetadata": { "Name": "FirewallRuleAzureService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5764,9 +6220,9 @@ "ParameterMetadata": { "Name": "FirewallRuleCallerClientIP", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5781,7 +6237,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5795,9 +6251,9 @@ "ParameterMetadata": { "Name": "PublicNetworkSolutionAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5812,7 +6268,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5827,7 +6283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5842,7 +6298,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5855,9 +6311,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5876,7 +6332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5891,7 +6347,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5906,7 +6362,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5921,7 +6377,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5936,7 +6392,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5951,7 +6407,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5966,7 +6422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5981,7 +6437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5996,7 +6452,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6012,7 +6468,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6028,7 +6484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6043,7 +6499,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6058,7 +6514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6073,7 +6529,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6098,28 +6572,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -6133,7 +6607,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6145,7 +6619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6154,18 +6628,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -6173,11 +6647,11 @@ { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -6185,18 +6659,18 @@ { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "ConfigurationInfoAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6205,7 +6679,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6214,25 +6688,25 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "FirewallRuleAzureService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "FirewallRuleCallerClientIP", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6241,7 +6715,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6249,9 +6723,9 @@ { "Name": "PublicNetworkSolutionAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6260,7 +6734,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6269,7 +6743,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6278,16 +6752,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6300,7 +6774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6309,7 +6783,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6318,7 +6792,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6327,7 +6801,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6336,7 +6810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6345,7 +6819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6354,7 +6828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6364,7 +6838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6374,7 +6848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6383,7 +6857,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6392,7 +6866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6401,7 +6875,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6416,7 +6902,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6434,7 +6920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6449,7 +6935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6462,11 +6948,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -6480,11 +6966,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -6498,9 +6984,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6513,9 +6999,9 @@ "ParameterMetadata": { "Name": "ConfigurationInfoAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6530,7 +7016,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6545,7 +7031,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6558,9 +7044,9 @@ "ParameterMetadata": { "Name": "FirewallRuleAzureService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6573,9 +7059,9 @@ "ParameterMetadata": { "Name": "FirewallRuleCallerClientIP", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6590,7 +7076,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6604,9 +7090,9 @@ "ParameterMetadata": { "Name": "PublicNetworkSolutionAction", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6621,7 +7107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6636,7 +7122,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6651,7 +7137,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6664,9 +7150,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6685,7 +7171,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6700,7 +7186,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6715,7 +7201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6730,7 +7216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6745,7 +7231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6760,7 +7246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6775,7 +7261,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6791,7 +7277,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6807,7 +7293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6822,7 +7308,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6837,7 +7323,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6852,7 +7338,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6877,13 +7381,13 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.SecretAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.SecretAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SecretInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase", - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "Name": "System.String" + "SecretInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase", + "Name": "System.String", + "AuthType": "System.String" }, "Methods": [ { @@ -6904,7 +7408,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo" }, { "Name": "ToJson", @@ -6928,7 +7432,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo" }, { "Name": "DeserializeFromPSObject", @@ -6938,7 +7442,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo" }, { "Name": "FromJsonString", @@ -6948,20 +7452,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -6994,18 +7498,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "SecretInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SecretType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType" + "SecretType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -7015,7 +7519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7024,7 +7528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7033,16 +7537,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AuthType", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7057,7 +7564,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7070,11 +7577,11 @@ "ParameterMetadata": { "Name": "SecretInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SecretType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType" + "SecretType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -7090,7 +7597,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7105,7 +7612,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7120,7 +7627,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7131,11 +7638,14 @@ }, { "ParameterMetadata": { - "Name": "AuthType", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7160,17 +7670,17 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ServicePrincipalSecretAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ServicePrincipalSecretAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "DeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", + "Role": "System.Collections.Generic.List`1[System.String]", + "AuthType": "System.String", "ClientId": "System.String", + "DeleteOrUpdateBehavior": "System.String", "PrincipalId": "System.String", "Secret": "System.String", - "UserName": "System.String", - "Role": "System.String[]" + "UserName": "System.String" }, "Methods": [ { @@ -7191,7 +7701,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServicePrincipalSecretAuthInfo" }, { "Name": "ToJson", @@ -7215,7 +7725,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServicePrincipalSecretAuthInfo" }, { "Name": "DeserializeFromPSObject", @@ -7225,7 +7735,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServicePrincipalSecretAuthInfo" }, { "Name": "FromJsonString", @@ -7235,20 +7745,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServicePrincipalSecretAuthInfo" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -7281,7 +7791,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7290,7 +7800,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7299,16 +7809,38 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Role", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AuthType", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7323,7 +7855,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7338,7 +7870,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7353,7 +7885,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7364,11 +7896,45 @@ }, { "ParameterMetadata": { - "Name": "AuthType", + "Name": "Role", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7393,14 +7959,14 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.SystemAssignedIdentityAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.SystemAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "DeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "UserName": "System.String", - "Role": "System.String[]" + "Role": "System.Collections.Generic.List`1[System.String]", + "AuthType": "System.String", + "DeleteOrUpdateBehavior": "System.String", + "UserName": "System.String" }, "Methods": [ { @@ -7421,7 +7987,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo" }, { "Name": "ToJson", @@ -7445,7 +8011,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo" }, { "Name": "DeserializeFromPSObject", @@ -7455,7 +8021,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo" }, { "Name": "FromJsonString", @@ -7465,20 +8031,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -7507,11 +8073,33 @@ ], "Parameters": [ { - "Name": "AuthType", + "Name": "Role", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7522,11 +8110,45 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AuthType", + "Name": "Role", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7551,16 +8173,16 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.UserAssignedIdentityAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.UserAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "DeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", + "Role": "System.Collections.Generic.List`1[System.String]", + "AuthType": "System.String", "ClientId": "System.String", + "DeleteOrUpdateBehavior": "System.String", "SubscriptionId": "System.String", - "UserName": "System.String", - "Role": "System.String[]" + "UserName": "System.String" }, "Methods": [ { @@ -7581,7 +8203,7 @@ "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo" }, { "Name": "ToJson", @@ -7605,7 +8227,7 @@ "Type": "System.Collections.IDictionary" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo" }, { "Name": "DeserializeFromPSObject", @@ -7615,7 +8237,7 @@ "Type": "System.Management.Automation.PSObject" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo" }, { "Name": "FromJsonString", @@ -7625,20 +8247,20 @@ "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo" + "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo" }, { "Name": "ToJsonString", "ReturnType": "System.String" }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, { "Name": "ToString", "ReturnType": "System.String" }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, { "Name": "Equals", "Parameters": [ @@ -7671,7 +8293,17 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Role", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -7680,16 +8312,28 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AuthType", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7704,7 +8348,23 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Role", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -7719,7 +8379,22 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7730,11 +8405,14 @@ }, { "ParameterMetadata": { - "Name": "AuthType", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7761,7 +8439,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -7777,7 +8455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7786,7 +8464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7795,7 +8473,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -7818,7 +8496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7827,7 +8505,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7836,7 +8514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7845,7 +8523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7854,7 +8532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7863,7 +8541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7872,7 +8550,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7882,7 +8560,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7892,7 +8570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7901,7 +8579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7910,7 +8588,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7919,7 +8597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7928,7 +8606,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7946,7 +8636,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7961,7 +8651,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7976,7 +8666,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7991,7 +8681,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8010,7 +8700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8025,7 +8715,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8040,7 +8730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8055,7 +8745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8070,7 +8760,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8086,7 +8776,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8102,7 +8792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8117,7 +8807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8132,7 +8822,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8147,7 +8837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8162,7 +8852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8170,19 +8860,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -8211,7 +8919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8226,7 +8934,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8241,7 +8949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8256,7 +8964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8271,7 +8979,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8287,7 +8995,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8303,7 +9011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8318,7 +9026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8333,7 +9041,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8348,7 +9056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8363,7 +9071,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8387,7 +9113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8402,7 +9128,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8417,7 +9143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8432,7 +9158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8447,7 +9173,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8463,7 +9189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8479,7 +9205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8494,7 +9220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8509,7 +9235,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8524,7 +9250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8539,7 +9265,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8566,7 +9310,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -8582,7 +9326,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8591,7 +9335,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8600,7 +9344,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -8623,7 +9367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8632,7 +9376,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8641,7 +9385,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8650,7 +9394,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8659,7 +9403,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8668,7 +9412,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8677,7 +9421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8686,7 +9430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8695,7 +9439,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8705,7 +9449,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8715,7 +9459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8724,7 +9468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8733,7 +9477,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8742,7 +9486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8751,7 +9495,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8769,7 +9525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8784,7 +9540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8799,7 +9555,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8814,7 +9570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8829,7 +9585,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8844,7 +9600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8863,7 +9619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8878,7 +9634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8893,7 +9649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8908,7 +9664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8923,7 +9679,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8939,7 +9695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8955,7 +9711,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8970,7 +9726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8985,7 +9741,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9000,7 +9756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9015,7 +9771,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9035,7 +9809,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -9064,7 +9838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9079,7 +9853,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9094,7 +9868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9109,7 +9883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9124,7 +9898,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9140,7 +9914,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9156,7 +9930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9171,7 +9945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9186,7 +9960,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9201,7 +9975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9216,7 +9990,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9240,7 +10032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9255,7 +10047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9270,7 +10062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9285,7 +10077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9300,7 +10092,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9316,7 +10108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9332,7 +10124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9347,7 +10139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9362,7 +10154,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9377,7 +10169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9392,7 +10184,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9419,7 +10229,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -9435,7 +10245,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9444,7 +10254,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9453,7 +10263,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -9476,7 +10286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9485,7 +10295,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9494,7 +10304,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9503,7 +10313,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9512,7 +10322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9521,7 +10331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9530,7 +10340,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9540,7 +10350,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9550,7 +10360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9559,7 +10369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9568,7 +10378,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9577,7 +10387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9586,7 +10396,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9604,7 +10426,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9619,7 +10441,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9634,7 +10456,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9649,7 +10471,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9668,7 +10490,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9683,7 +10505,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9698,7 +10520,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9713,7 +10535,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9728,7 +10550,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9744,7 +10566,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9760,7 +10582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9775,7 +10597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9790,7 +10612,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -9805,7 +10627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9820,7 +10642,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9840,7 +10680,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -9869,7 +10709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9884,7 +10724,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -9899,7 +10739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9914,7 +10754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9929,7 +10769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9945,7 +10785,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9961,7 +10801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9976,7 +10816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9991,7 +10831,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10006,7 +10846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10021,7 +10861,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10045,7 +10903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10060,7 +10918,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10075,7 +10933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10090,7 +10948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10105,7 +10963,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10121,7 +10979,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10137,7 +10995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10152,7 +11010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10167,7 +11025,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10182,7 +11040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10197,7 +11055,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10222,15 +11098,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidateResult", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidateResult, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ValidationDetail": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]", - "AuthType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType]", + "ValidationDetail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem]", "IsConnectionAvailable": "System.Nullable`1[System.Boolean]", "ReportEndTimeUtc": "System.Nullable`1[System.DateTime]", "ReportStartTimeUtc": "System.Nullable`1[System.DateTime]", + "AuthType": "System.String", "LinkerName": "System.String", "SourceId": "System.String", "TargetId": "System.String" @@ -10250,7 +11126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10259,7 +11135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10268,7 +11144,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -10291,7 +11167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10300,7 +11176,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10309,7 +11185,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10318,7 +11194,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10327,7 +11203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10336,7 +11212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10345,7 +11221,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10355,7 +11231,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10365,7 +11241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10374,7 +11250,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10383,7 +11259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10392,7 +11268,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10410,7 +11298,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10425,7 +11313,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10440,7 +11328,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10455,7 +11343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10474,7 +11362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10489,7 +11377,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10504,7 +11392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10519,7 +11407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10534,7 +11422,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10550,7 +11438,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10566,7 +11454,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10581,7 +11469,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10596,7 +11484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10611,7 +11499,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10631,7 +11537,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -10660,7 +11566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10675,7 +11581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10690,7 +11596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10705,7 +11611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10720,7 +11626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10736,7 +11642,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10752,7 +11658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10767,7 +11673,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10782,7 +11688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10797,7 +11703,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10821,7 +11745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10836,7 +11760,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -10851,7 +11775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10866,7 +11790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10881,7 +11805,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10897,7 +11821,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10913,7 +11837,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10928,7 +11852,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -10943,7 +11867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10958,7 +11882,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10983,15 +11925,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidateResult", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidateResult, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ValidationDetail": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]", - "AuthType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType]", + "ValidationDetail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem]", "IsConnectionAvailable": "System.Nullable`1[System.Boolean]", "ReportEndTimeUtc": "System.Nullable`1[System.DateTime]", "ReportStartTimeUtc": "System.Nullable`1[System.DateTime]", + "AuthType": "System.String", "LinkerName": "System.String", "SourceId": "System.String", "TargetId": "System.String" @@ -11011,7 +11953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11020,7 +11962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11029,7 +11971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -11052,7 +11994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11061,7 +12003,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11070,7 +12012,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11079,7 +12021,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11088,7 +12030,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11097,7 +12039,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11106,7 +12048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11115,7 +12057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11124,7 +12066,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11134,7 +12076,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11144,7 +12086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11153,7 +12095,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11162,7 +12104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11171,7 +12113,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11189,7 +12143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11204,7 +12158,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11219,7 +12173,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11234,7 +12188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11249,7 +12203,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11264,7 +12218,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11283,7 +12237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11298,7 +12252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11313,7 +12267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11328,7 +12282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11343,7 +12297,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11359,7 +12313,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11375,7 +12329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11390,7 +12344,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11405,7 +12359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11420,7 +12374,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11440,7 +12412,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -11469,7 +12441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11484,7 +12456,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11499,7 +12471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11514,7 +12486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11529,7 +12501,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11545,7 +12517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11561,7 +12533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11576,7 +12548,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11591,7 +12563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11606,7 +12578,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11630,7 +12620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11645,7 +12635,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11660,7 +12650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11675,7 +12665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11690,7 +12680,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11706,7 +12696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11722,7 +12712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11737,7 +12727,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11752,7 +12742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11767,7 +12757,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11792,15 +12800,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidateResult", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidateResult, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ValidationDetail": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]", - "AuthType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType]", + "ValidationDetail": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem]", "IsConnectionAvailable": "System.Nullable`1[System.Boolean]", "ReportEndTimeUtc": "System.Nullable`1[System.DateTime]", "ReportStartTimeUtc": "System.Nullable`1[System.DateTime]", + "AuthType": "System.String", "LinkerName": "System.String", "SourceId": "System.String", "TargetId": "System.String" @@ -11820,7 +12828,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11829,7 +12837,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11838,7 +12846,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -11861,7 +12869,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11870,7 +12878,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11879,7 +12887,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11888,7 +12896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11897,7 +12905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11906,7 +12914,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11915,7 +12923,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11925,7 +12933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11935,7 +12943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11944,7 +12952,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -11953,7 +12961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11962,16 +12970,28 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "Validate", - "Parameters": [ - { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Validate", + "Parameters": [ + { "ParameterMetadata": { "Name": "Name", "AliasList": [ @@ -11980,7 +13000,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -11995,7 +13015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12010,7 +13030,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12025,7 +13045,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12044,7 +13064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12059,7 +13079,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12074,7 +13094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12089,7 +13109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12104,7 +13124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12120,7 +13140,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12136,7 +13156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12151,7 +13171,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12166,7 +13186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12181,7 +13201,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12201,7 +13239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -12230,7 +13268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12245,7 +13283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12260,7 +13298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12275,7 +13313,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12290,7 +13328,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12306,7 +13344,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12322,7 +13360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12337,7 +13375,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12352,7 +13390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12367,7 +13405,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12391,7 +13447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12406,7 +13462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12421,7 +13477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12436,7 +13492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12451,7 +13507,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12467,7 +13523,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12483,7 +13539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12498,7 +13554,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12513,7 +13569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12528,7 +13584,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12553,28 +13627,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -12591,7 +13665,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12600,7 +13674,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12609,7 +13683,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -12628,18 +13702,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -12647,9 +13721,9 @@ { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12658,18 +13732,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -12679,16 +13753,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12701,7 +13775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12710,7 +13784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12719,7 +13793,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12728,7 +13802,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12737,7 +13811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12746,7 +13820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12755,7 +13829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12765,7 +13839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12775,7 +13849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12784,7 +13858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -12793,7 +13867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12802,7 +13876,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12820,7 +13906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12835,7 +13921,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12850,7 +13936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12865,7 +13951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12880,7 +13966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12893,11 +13979,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -12911,9 +13997,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12928,7 +14014,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12941,11 +14027,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -12961,7 +14047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12974,9 +14060,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -12995,7 +14081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13010,7 +14096,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13025,7 +14111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13040,7 +14126,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13055,7 +14141,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13071,7 +14157,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13087,7 +14173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13102,7 +14188,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13117,7 +14203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13132,7 +14218,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13152,7 +14256,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -13177,7 +14281,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13190,11 +14294,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -13208,9 +14312,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13225,7 +14329,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13238,11 +14342,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -13258,7 +14362,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13271,9 +14375,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13292,7 +14396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13307,7 +14411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13322,7 +14426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13337,7 +14441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13352,7 +14456,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13368,7 +14472,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13384,7 +14488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13399,7 +14503,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13414,7 +14518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13429,7 +14533,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13449,7 +14571,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13462,11 +14584,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -13480,9 +14602,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13497,7 +14619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13510,11 +14632,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -13530,7 +14652,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13543,9 +14665,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13564,7 +14686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13579,7 +14701,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13594,7 +14716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13609,7 +14731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13624,7 +14746,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13640,7 +14762,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13656,7 +14778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13671,7 +14793,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13686,7 +14808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13701,7 +14823,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13726,28 +14866,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -13764,7 +14904,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13773,7 +14913,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13782,7 +14922,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -13801,18 +14941,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -13820,20 +14960,20 @@ { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -13843,7 +14983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13852,16 +14992,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13874,7 +15014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13883,7 +15023,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13892,7 +15032,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13901,7 +15041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13910,7 +15050,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13919,7 +15059,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -13928,7 +15068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13937,7 +15077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13946,7 +15086,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13956,7 +15096,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13966,7 +15106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13975,7 +15115,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -13984,7 +15124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13993,7 +15133,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -14011,7 +15163,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14026,7 +15178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14041,7 +15193,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14056,7 +15208,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14071,7 +15223,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14086,7 +15238,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14101,7 +15253,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14114,11 +15266,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -14132,9 +15284,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14147,11 +15299,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -14167,7 +15319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14182,7 +15334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14195,9 +15347,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14216,7 +15368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14231,7 +15383,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14246,7 +15398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14261,7 +15413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14276,7 +15428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14292,7 +15444,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14308,7 +15460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14323,7 +15475,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14338,7 +15490,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14353,7 +15505,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14373,7 +15543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -14398,7 +15568,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14411,11 +15581,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -14429,9 +15599,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14444,11 +15614,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -14464,7 +15634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14479,7 +15649,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14492,9 +15662,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14513,7 +15683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14528,7 +15698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14543,7 +15713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14558,7 +15728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14573,7 +15743,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14589,7 +15759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14605,7 +15775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14620,7 +15790,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14635,7 +15805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14650,7 +15820,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14670,7 +15858,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14683,11 +15871,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -14701,9 +15889,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14716,11 +15904,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -14736,7 +15924,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14751,7 +15939,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14764,9 +15952,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14785,7 +15973,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14800,7 +15988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14815,7 +16003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14830,7 +16018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14845,7 +16033,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14861,7 +16049,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14877,7 +16065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14892,7 +16080,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -14907,7 +16095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14922,7 +16110,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14947,28 +16153,28 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ILinkerResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "ConfigurationInfoAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "PublicNetworkSolutionAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "FirewallRuleAzureService": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "FirewallRuleCallerClientIP": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "ClientType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "ConfigurationInfoDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "VNetSolutionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "SecretStoreKeyVaultId": "System.String", - "SecretStoreKeyVaultSecretName": "System.String", + "AuthInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "ConfigurationInfoAdditionalConfiguration": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "ConfigurationInfoCustomizedKey": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "TargetService": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "FirewallRuleIPRange": "System.Collections.Generic.List`1[System.String]", + "ConfigurationInfoDeleteOrUpdateBehavior": "System.String", + "FirewallRuleAzureService": "System.String", + "FirewallRuleCallerClientIP": "System.String", + "VNetSolutionDeleteOrUpdateBehavior": "System.String", "ProvisioningState": "System.String", + "PublicNetworkSolutionAction": "System.String", + "PublicNetworkSolutionDeleteOrUpdateBehavior": "System.String", "Scope": "System.String", - "FirewallRuleIPRange": "System.String[]" + "SecretStoreKeyVaultId": "System.String", + "SecretStoreKeyVaultSecretName": "System.String", + "ClientType": "System.String", + "ConfigurationInfoAction": "System.String", + "VNetSolutionType": "System.String" } }, "ParameterSets": [ @@ -14985,7 +16191,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -14994,7 +16200,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15003,7 +16209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -15022,18 +16228,18 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15041,20 +16247,20 @@ { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15064,7 +16270,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15073,16 +16279,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15095,7 +16301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15104,7 +16310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15113,7 +16319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15122,7 +16328,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15131,7 +16337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15140,7 +16346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15149,7 +16355,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15159,7 +16365,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15169,7 +16375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15178,7 +16384,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15187,7 +16393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15196,7 +16402,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15214,7 +16432,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15229,7 +16447,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15244,7 +16462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15259,7 +16477,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15274,7 +16492,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15287,11 +16505,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15305,9 +16523,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15320,11 +16538,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15340,7 +16558,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15355,7 +16573,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15368,9 +16586,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15389,7 +16607,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15404,7 +16622,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15419,7 +16637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15434,7 +16652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15449,7 +16667,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15465,7 +16683,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15481,7 +16699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15496,7 +16714,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15511,7 +16729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15526,7 +16744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15534,19 +16752,37 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, 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.ServiceLinker.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectorName": "System.String", "DryrunName": "System.String", @@ -15571,7 +16807,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15584,11 +16820,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15602,9 +16838,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15617,11 +16853,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15637,7 +16873,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15652,7 +16888,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15665,9 +16901,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15686,7 +16922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15701,7 +16937,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15716,7 +16952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15731,7 +16967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15746,7 +16982,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15762,7 +16998,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15778,7 +17014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15793,7 +17029,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -15808,7 +17044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15823,7 +17059,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15843,7 +17097,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15856,11 +17110,11 @@ "ParameterMetadata": { "Name": "AuthInfo", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "AuthType": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15874,9 +17128,9 @@ "ParameterMetadata": { "Name": "ClientType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15889,11 +17143,11 @@ "ParameterMetadata": { "Name": "TargetService", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "Type": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -15909,7 +17163,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15924,7 +17178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15937,9 +17191,9 @@ "ParameterMetadata": { "Name": "VNetSolutionType", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15958,7 +17212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15973,7 +17227,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -15988,7 +17242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16003,7 +17257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16018,7 +17272,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16034,7 +17288,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[], Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16050,7 +17304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16065,7 +17319,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -16080,7 +17334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16095,7 +17349,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16155,7 +17427,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -16289,17 +17561,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -16307,183 +17579,122 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName" + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationName, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Description": "System.String", "Value": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" - ] + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AuthType": "System.String" + } }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.AuthType" - } - ], - "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.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoAdditionalConfigurations, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfigurationInfoCustomizedKeys, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Type": "System.String" + } + }, + "System.Collections.Generic.List`1[System.String]": { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Management.Automation.CompletionResult" + "System.String" ] }, - "System.Management.Automation.CompletionResult": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResourcePropertiesBase": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResourcePropertiesBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResourcePropertiesBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Type": "System.String" + } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType" - ] + "System.Threading.Tasks.Task": { + "Namespace": "System.Threading.Tasks", + "Name": "System.Threading.Tasks.Task", + "AssemblyQualifiedName": "System.Threading.Tasks.Task, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResource, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ResourceProperty": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAzureResourcePropertiesBase", + "Id": "System.String" + } }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Item": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode" + }, "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": "ToString", + "ReturnType": "System.String" }, { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType" - } - ], - "ReturnType": "System.Boolean" + "Name": "GetType", + "ReturnType": "System.Type" }, { "Name": "Equals", @@ -16498,685 +17709,98 @@ { "Name": "GetHashCode", "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" } ] }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentBootstrapServer, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType" + "Endpoint": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IConfluentSchemaRegistry, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Endpoint": "System.String" + } }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SecretType": "System.String" + } }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Type": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType" + "SecretInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISecretInfoBase", + "Name": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.TargetServiceType" - } - ], - "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.ServiceLinker.Models.IServicePrincipalSecretAuthInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServicePrincipalSecretAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServicePrincipalSecretAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Role": "System.Collections.Generic.List`1[System.String]", + "ClientId": "System.String", + "DeleteOrUpdateBehavior": "System.String", + "PrincipalId": "System.String", + "Secret": "System.String" + } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.ISystemAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Role": "System.Collections.Generic.List`1[System.String]", + "DeleteOrUpdateBehavior": "System.String" + } + }, + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IUserAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Role": "System.Collections.Generic.List`1[System.String]", + "ClientId": "System.String", + "DeleteOrUpdateBehavior": "System.String", + "SubscriptionId": "System.String" + } + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType" + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.ActionType" - } - ], - "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.ServiceLinker.Support.AllowType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.AllowType" - } - ], - "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.ServiceLinker.Support.DeleteOrUpdateBehavior]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.DeleteOrUpdateBehavior" - } - ], - "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.ServiceLinker.Support.VNetSolutionType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.VNetSolutionType" - } - ], - "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.String[]": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Type": "System.String" - } - }, - "System.Threading.Tasks.Task": { - "Namespace": "System.Threading.Tasks", - "Name": "System.Threading.Tasks.Task", - "AssemblyQualifiedName": "System.Threading.Tasks.Task, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ResourceProperty": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase", - "Id": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IValidationResultItem, Az.ServiceLinker.private, Version=0.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Item": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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" - } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Endpoint": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Endpoint": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SecretType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.SecretType" - } - ], - "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.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SecretInfo": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase", - "Name": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "ClientId": "System.String", - "PrincipalId": "System.String", - "Secret": "System.String", - "Role": "System.String[]" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "Role": "System.String[]" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DeleteOrUpdateBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior]", - "ClientId": "System.String", - "SubscriptionId": "System.String", - "Role": "System.String[]" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[], Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem" - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Result": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus]", "Description": "System.String", "ErrorCode": "System.String", "ErrorMessage": "System.String", - "Name": "System.String" + "Name": "System.String", + "Result": "System.String" } }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus, Az.ServiceLinker.private, Version=0.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus, Az.ServiceLinker.private, Version=0.2.2.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.ServiceLinker.Support.ValidationResultStatus" - } - ], - "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.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -17184,7 +17808,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -17192,7 +17816,7 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" } } } \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Az.StorageAction.json b/tools/Tools.Common/SerializedCmdlets/Az.StorageAction.json index 90d1f2d1076c..466991a58eb9 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.StorageAction.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.StorageAction.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.StorageAction", - "ModuleVersion": "0.1.1", + "ModuleVersion": "0.1.2", "Cmdlets": [ { "VerbName": "Get", @@ -46,7 +46,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -55,7 +55,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -64,7 +64,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -94,7 +94,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -103,7 +103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -132,7 +132,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -141,7 +141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -150,7 +150,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -168,7 +180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -183,7 +195,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -198,7 +210,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -218,7 +230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -233,7 +245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -280,7 +292,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -295,7 +307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -310,7 +322,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -330,7 +360,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -345,7 +375,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -365,7 +395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -380,7 +410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -427,7 +457,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -442,7 +472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -457,7 +487,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -477,7 +525,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -497,7 +545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -512,7 +560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -559,7 +607,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -574,7 +622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -589,7 +637,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -635,7 +701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -650,7 +716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -697,7 +763,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -712,7 +778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -727,7 +793,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -751,7 +835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -766,7 +850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -813,7 +897,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -828,7 +912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -843,7 +927,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -886,7 +988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -895,7 +997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -904,7 +1006,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -914,7 +1016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -927,7 +1029,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -936,7 +1038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -965,7 +1067,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -974,7 +1076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -983,7 +1085,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -998,7 +1112,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1013,7 +1127,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1028,7 +1142,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1044,7 +1158,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1063,7 +1177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1078,7 +1192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1125,7 +1239,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1140,7 +1254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1155,7 +1269,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1211,7 +1343,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1220,7 +1352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1229,7 +1361,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1239,7 +1371,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1248,7 +1380,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1261,7 +1393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1270,7 +1402,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1299,7 +1431,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1308,7 +1440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1317,7 +1449,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1332,7 +1476,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1347,7 +1491,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1362,7 +1506,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -1378,7 +1522,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1393,7 +1537,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1412,7 +1556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1427,7 +1571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1474,7 +1618,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1489,7 +1633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1504,7 +1648,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1551,7 +1713,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1560,7 +1722,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1585,7 +1747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1614,7 +1776,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1623,7 +1785,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1632,7 +1794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1641,7 +1803,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1654,7 +1816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1663,7 +1825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1692,7 +1854,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1701,7 +1863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1710,7 +1872,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1725,7 +1899,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1740,7 +1914,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1755,7 +1929,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1774,7 +1948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1789,7 +1963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1836,7 +2010,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1851,7 +2025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1866,7 +2040,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1886,7 +2078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1901,7 +2093,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1916,7 +2108,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1935,7 +2127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1950,7 +2142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1997,7 +2189,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2012,7 +2204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2027,7 +2219,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2047,7 +2257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2062,7 +2272,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2077,7 +2287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2124,7 +2334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2139,7 +2349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2158,7 +2368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2173,7 +2383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2220,7 +2430,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2235,7 +2445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2250,7 +2460,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2292,7 +2520,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2339,7 +2567,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2354,7 +2582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2373,7 +2601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2388,7 +2616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2435,7 +2663,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2450,7 +2678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2465,7 +2693,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2489,7 +2735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2504,7 +2750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2551,7 +2797,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2566,7 +2812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2581,7 +2827,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2638,7 +2902,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2647,7 +2911,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2656,7 +2920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2665,7 +2929,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2674,7 +2938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2683,7 +2947,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2702,7 +2966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2721,7 +2985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2730,7 +2994,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2739,7 +3003,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -2749,7 +3013,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2758,7 +3022,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2771,7 +3035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2780,7 +3044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2789,7 +3053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2818,7 +3082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2827,7 +3091,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2836,7 +3100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2845,7 +3109,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2863,7 +3139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2878,7 +3154,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2893,7 +3169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2912,7 +3188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2927,7 +3203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2942,7 +3218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2989,7 +3265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3004,7 +3280,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3019,7 +3295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3034,7 +3310,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3054,7 +3348,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3069,7 +3363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3084,7 +3378,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3115,7 +3409,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3146,7 +3440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3161,7 +3455,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3176,7 +3470,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -3195,7 +3489,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3210,7 +3504,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3225,7 +3519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3244,7 +3538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3259,7 +3553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3274,7 +3568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3321,7 +3615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3336,7 +3630,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3351,7 +3645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3366,7 +3660,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3386,7 +3698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3404,7 +3716,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3419,7 +3731,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3434,7 +3746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3453,7 +3765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3468,7 +3780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3483,7 +3795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3530,7 +3842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3545,7 +3857,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3560,7 +3872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3575,7 +3887,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3595,7 +3925,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3613,7 +3943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3628,7 +3958,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3643,7 +3973,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3662,7 +3992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3677,7 +4007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3692,7 +4022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3739,7 +4069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3754,7 +4084,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3769,7 +4099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3784,7 +4114,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3917,7 +4265,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3926,7 +4274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3935,7 +4283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3947,6 +4295,18 @@ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskOperationParameters, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -3959,7 +4319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3974,7 +4334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3989,7 +4349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4012,6 +4372,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -4148,7 +4526,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4171,6 +4549,18 @@ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewKeyValueProperties" }, "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -4199,7 +4589,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4239,6 +4629,24 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -4362,7 +4770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4371,7 +4779,19 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4386,7 +4806,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4401,7 +4821,25 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4428,7 +4866,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -4444,7 +4882,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4453,7 +4891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4462,7 +4900,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4491,7 +4929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4500,7 +4938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4509,7 +4947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4538,7 +4976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4547,7 +4985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4556,7 +4994,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4565,7 +5003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4574,7 +5012,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4592,7 +5042,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4607,7 +5057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4622,7 +5072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4641,7 +5091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4656,7 +5106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4671,7 +5121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4718,7 +5168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4733,7 +5183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4748,7 +5198,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4763,7 +5213,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4778,7 +5228,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4824,7 +5292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4839,7 +5307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4854,7 +5322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4901,7 +5369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4916,7 +5384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4931,7 +5399,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4946,7 +5414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4961,7 +5429,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4985,7 +5471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5000,7 +5486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5015,7 +5501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5062,7 +5548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5077,7 +5563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5092,7 +5578,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5107,7 +5593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5122,7 +5608,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5179,7 +5683,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5188,7 +5692,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5197,7 +5701,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5222,7 +5726,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5241,7 +5745,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -5253,7 +5757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5262,7 +5766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5281,7 +5785,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5290,7 +5794,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5304,7 +5808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5313,7 +5817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5322,7 +5826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5351,7 +5855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5360,7 +5864,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5369,7 +5873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5378,7 +5882,19 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5396,7 +5912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5411,7 +5927,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5426,7 +5942,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5441,7 +5957,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5472,7 +5988,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -5490,7 +6006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5505,7 +6021,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5536,7 +6052,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5551,7 +6067,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5571,7 +6087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5586,7 +6102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5601,7 +6117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5648,7 +6164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5663,7 +6179,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5678,7 +6194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5693,7 +6209,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5735,7 +6269,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5766,7 +6300,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -5784,7 +6318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5799,7 +6333,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5830,7 +6364,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -5845,7 +6379,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -5865,7 +6399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5880,7 +6414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5895,7 +6429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5942,7 +6476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5957,7 +6491,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5972,7 +6506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5987,7 +6521,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6007,7 +6559,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6038,7 +6590,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Boolean" ] @@ -6056,7 +6608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6071,7 +6623,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6102,7 +6654,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6117,7 +6669,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -6137,7 +6689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6152,7 +6704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6167,7 +6719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6214,7 +6766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6229,7 +6781,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6244,7 +6796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6259,7 +6811,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6324,7 +6894,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskOperation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskOperation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskOperation, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskOperation, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskOperation" ] @@ -6348,7 +6918,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.DateTime" ] @@ -6356,12 +6926,12 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Int64" ] @@ -6503,17 +7073,17 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Net.Http.HttpResponseMessage" ] @@ -6521,38 +7091,38 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.Delegate" }, "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewBlobProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewBlobProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewBlobProperties, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewBlobProperties, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewBlobProperties" ] @@ -6572,7 +7142,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewKeyValueProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewKeyValueProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewKeyValueProperties, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewKeyValueProperties, Az.StorageAction.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StorageAction.Models.IStorageTaskPreviewKeyValueProperties" ] diff --git a/tools/Tools.Common/SerializedCmdlets/Az.StorageCache.json b/tools/Tools.Common/SerializedCmdlets/Az.StorageCache.json index 43e31dfd2b4b..7a4d714471dd 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.StorageCache.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.StorageCache.json @@ -1,22 +1,52 @@ { "ModuleName": "Az.StorageCache", - "ModuleVersion": "0.1.2", + "ModuleVersion": "0.2.0", "Cmdlets": [ { - "VerbName": "Clear", - "NounName": "AzStorageCache", - "Name": "Clear-AzStorageCache", - "ClassName": "Clear-AzStorageCache", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + "VerbName": "Get", + "NounName": "AzStorageCacheAmlFileSystem", + "Name": "Get-AzStorageCacheAmlFileSystem", + "ClassName": "Get-AzStorageCacheAmlFileSystem", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, "SupportsPaging": false, - "DefaultParameterSetName": "Flush", + "DefaultParameterSetName": "List", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystem", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystem, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IUserAssignedIdentities", + "HsmArchiveStatus": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive]", + "Zone": "System.Collections.Generic.List`1[System.String]", + "ThroughputProvisionedMBps": "System.Nullable`1[System.Int32]", + "StorageCapacityTiB": "System.Nullable`1[System.Single]", + "SourceVaultId": "System.String", + "SkuName": "System.String", + "SettingLoggingContainer": "System.String", + "SettingImportPrefix": "System.String", + "SettingContainer": "System.String", + "ProvisioningState": "System.String", + "MaintenanceWindowTimeOfDayUtc": "System.String", + "MaintenanceWindowDayOfWeek": "System.String", + "KeyEncryptionKeyUrl": "System.String", + "IdentityTenantId": "System.String", + "IdentityPrincipalId": "System.String", + "HealthStatusDescription": "System.String", + "HealthStatusCode": "System.String", + "HealthState": "System.String", + "FilesystemSubnet": "System.String", + "ContainerStorageInterfaceStorageClass": "System.String", + "ContainerStorageInterfacePersistentVolumeClaim": "System.String", + "ContainerStorageInterfacePersistentVolume": "System.String", + "ClientInfoMountCommand": "System.String", + "ClientInfoMgsAddress": "System.String", + "ClientInfoLustreVersion": "System.String", + "IdentityType": "System.String", + "AzureAsyncOperation": "System.String" + } }, "ParameterSets": [ "__AllParameterSets" @@ -27,12 +57,12 @@ { "Name": "Name", "AliasList": [ - "CacheName" + "AmlFilesystemName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -41,7 +71,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -49,8 +79,9 @@ "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -59,15 +90,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AmlFilesystemName": "System.String", - "CacheName": "System.String", "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", "SubscriptionId": "System.String" } }, @@ -82,16 +109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -100,7 +118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -109,7 +127,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -119,35 +137,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -156,7 +156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -165,25 +165,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Flush", + "Name": "Get", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "CacheName" + "AmlFilesystemName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -198,7 +210,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -212,8 +224,9 @@ "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -232,22 +245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -262,7 +260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -277,7 +275,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -293,7 +291,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -305,11 +303,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -320,26 +318,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -350,11 +333,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -365,11 +348,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -381,44 +367,31 @@ ] }, { - "Name": "FlushViaIdentity", + "Name": "List1", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -429,11 +402,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -448,7 +425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -463,7 +440,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -479,7 +456,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -491,11 +468,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -506,26 +483,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -536,11 +498,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -551,11 +513,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -567,19 +532,16 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "List", "Parameters": [ { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -590,11 +552,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -609,7 +575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -624,7 +590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -640,7 +606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -652,11 +618,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -667,11 +633,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -682,11 +648,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -697,11 +663,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -709,262 +678,91 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "GetViaIdentity", + "Parameters": [ { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "InputObject", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Clear", - "NounName": "AzStorageCacheTarget", - "Name": "Clear-AzStorageCacheTarget", - "ClassName": "Clear-AzStorageCacheTarget", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Flush", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Flush", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "CacheName", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], + "Name": "Break", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -975,15 +773,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -994,11 +788,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1009,11 +803,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1024,12 +818,14 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1037,15 +833,23 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1056,11 +860,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1071,11 +875,28 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -1090,7 +911,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1105,7 +926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1120,7 +941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1128,63 +949,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "FlushViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1192,14 +967,158 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzStorageCacheAmlFileSystemSubnetRequiredSize", + "Name": "Get-AzStorageCacheAmlFileSystemSubnetRequiredSize", + "ClassName": "Get-AzStorageCacheAmlFileSystemSubnetRequiredSize", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "GetExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IRequiredAmlFilesystemSubnetsSize", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IRequiredAmlFilesystemSubnetsSize, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FilesystemSubnetSize": "System.Nullable`1[System.Int32]" + } + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SkuName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageCapacityTiB", + "Type": { + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Break", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -1210,12 +1129,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "SkuName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1226,12 +1144,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "StorageCapacityTiB", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1242,11 +1159,15 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1257,11 +1178,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Break", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1272,11 +1193,12 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -1287,11 +1209,12 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -1302,11 +1225,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1314,23 +1237,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1341,11 +1255,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1356,118 +1270,14 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1481,20 +1291,20 @@ ] }, { - "VerbName": "Debug", - "NounName": "AzStorageCache", - "Name": "Debug-AzStorageCache", - "ClassName": "Debug-AzStorageCache", + "VerbName": "Invoke", + "NounName": "AzStorageCacheAmlFileSystemArchive", + "Name": "Invoke-AzStorageCacheAmlFileSystemArchive", + "ClassName": "Invoke-AzStorageCacheAmlFileSystemArchive", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Debug", + "DefaultParameterSetName": "ArchiveExpanded", "OutputTypes": [ { "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -1503,11 +1313,11 @@ ], "Parameters": [ { - "Name": "CacheName", + "Name": "AmlFilesystemName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1516,7 +1326,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1525,7 +1335,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1534,20 +1344,43 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AmlFilesystemName": "System.String", - "CacheName": "System.String", "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", "SubscriptionId": "System.String" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "FilesystemPath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -1557,16 +1390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1575,7 +1399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1584,7 +1408,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1594,26 +1418,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1622,7 +1437,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1631,7 +1446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1640,22 +1455,34 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Debug", + "Name": "ArchiveViaJsonString", "Parameters": [ { "ParameterMetadata": { - "Name": "CacheName", + "Name": "AmlFilesystemName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1670,7 +1497,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1685,7 +1512,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1696,30 +1523,30 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "JsonString", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1734,7 +1561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1749,7 +1576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1765,7 +1592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1777,11 +1604,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1792,11 +1619,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -1807,11 +1634,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1822,11 +1649,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1837,11 +1664,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1853,59 +1683,45 @@ ] }, { - "Name": "DebugViaIdentity", + "Name": "ArchiveViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "AmlFilesystemName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -1916,11 +1732,30 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1931,12 +1766,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1947,11 +1781,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1963,11 +1797,12 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -1982,7 +1817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1997,7 +1832,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2012,7 +1847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2027,7 +1862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2035,23 +1870,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2059,14 +1888,49 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ArchiveExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AmlFilesystemName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2077,11 +1941,30 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "FilesystemPath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2092,12 +1975,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2108,11 +1990,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2124,11 +2006,12 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -2143,7 +2026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2158,7 +2041,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2173,7 +2056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2188,7 +2071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2196,243 +2079,58 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzStorageCache", - "Name": "Get-AzStorageCache", - "ClassName": "Get-AzStorageCache", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICache", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICache, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DirectoryServicesSetting": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheIdentityUserAssignedIdentities", - "Tag": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheTags", - "HealthCondition": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition[]", - "SecuritySettingAccessPolicy": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "PrimingJob": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob[]", - "SpaceAllocation": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType]", - "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "UpgradeStatusFirmwareUpdateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType]", - "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType]", - "EncryptionSettingRotationToLatestKeyVersionEnabled": "System.Nullable`1[System.Boolean]", - "UpgradeSettingUpgradeScheduleEnabled": "System.Nullable`1[System.Boolean]", - "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", - "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "UpgradeSettingScheduledTime": "System.Nullable`1[System.DateTime]", - "UpgradeStatusFirmwareUpdateDeadline": "System.Nullable`1[System.DateTime]", - "UpgradeStatusLastFirmwareUpdate": "System.Nullable`1[System.DateTime]", - "SizeGb": "System.Nullable`1[System.Int32]", - "NetworkSettingMtu": "System.Nullable`1[System.Int32]", - "Type": "System.String", - "SystemDataLastModifiedBy": "System.String", - "UpgradeStatusCurrentFirmwareVersion": "System.String", - "SystemDataCreatedBy": "System.String", - "Id": "System.String", - "SkuName": "System.String", - "SourceVaultId": "System.String", - "HealthStatusDescription": "System.String", - "UpgradeStatusPendingFirmwareVersion": "System.String", - "NetworkSettingNtpServer": "System.String", - "NetworkSettingDnsSearchDomain": "System.String", - "Name": "System.String", - "Location": "System.String", - "KeyEncryptionKeyUrl": "System.String", - "IdentityTenantId": "System.String", - "IdentityPrincipalId": "System.String", - "Subnet": "System.String", - "NetworkSettingUtilityAddress": "System.String[]", - "NetworkSettingDnsServer": "System.String[]", - "MountAddress": "System.String[]", - "Zone": "System.String[]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Get", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ProgressAction", "AliasList": [ - "CacheName" + "proga" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ArchiveViaIdentityExpanded", + "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "FilesystemPath", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -2451,7 +2149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2466,7 +2164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2481,7 +2179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2497,7 +2195,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2509,41 +2207,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2551,35 +2219,14 @@ "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2590,15 +2237,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2609,73 +2252,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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=6.0.0.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2686,11 +2267,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2702,24 +2286,8 @@ ] }, { - "Name": "List", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -2730,7 +2298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2745,7 +2313,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2760,7 +2328,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2776,7 +2344,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2788,26 +2356,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2818,11 +2371,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -2830,48 +2383,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2882,58 +2401,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2944,142 +2416,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3093,40 +2437,40 @@ ] }, { - "VerbName": "Get", + "VerbName": "New", "NounName": "AzStorageCacheAmlFileSystem", - "Name": "Get-AzStorageCacheAmlFileSystem", - "ClassName": "Get-AzStorageCacheAmlFileSystem", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, + "Name": "New-AzStorageCacheAmlFileSystem", + "ClassName": "New-AzStorageCacheAmlFileSystem", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "List", + "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystem", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystem, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystem", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystem, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HsmArchiveStatus": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive[]", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUserAssignedIdentities", - "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType]", - "MaintenanceWindowDayOfWeek": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType]", + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IUserAssignedIdentities", + "HsmArchiveStatus": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive]", + "Zone": "System.Collections.Generic.List`1[System.String]", "ThroughputProvisionedMBps": "System.Nullable`1[System.Int32]", "StorageCapacityTiB": "System.Nullable`1[System.Single]", - "AzureAsyncOperation": "System.String", "SourceVaultId": "System.String", "SkuName": "System.String", "SettingLoggingContainer": "System.String", "SettingImportPrefix": "System.String", "SettingContainer": "System.String", + "ProvisioningState": "System.String", "MaintenanceWindowTimeOfDayUtc": "System.String", + "MaintenanceWindowDayOfWeek": "System.String", "KeyEncryptionKeyUrl": "System.String", "IdentityTenantId": "System.String", + "IdentityPrincipalId": "System.String", "HealthStatusDescription": "System.String", "HealthStatusCode": "System.String", + "HealthState": "System.String", "FilesystemSubnet": "System.String", "ContainerStorageInterfaceStorageClass": "System.String", "ContainerStorageInterfacePersistentVolumeClaim": "System.String", @@ -3134,8 +2478,8 @@ "ClientInfoMountCommand": "System.String", "ClientInfoMgsAddress": "System.String", "ClientInfoLustreVersion": "System.String", - "IdentityPrincipalId": "System.String", - "Zone": "System.String[]" + "IdentityType": "System.String", + "AzureAsyncOperation": "System.String" } }, "ParameterSets": [ @@ -3152,7 +2496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3161,7 +2505,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3169,9 +2513,8 @@ "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3180,231 +2523,315 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AmlFilesystemName": "System.String", - "CacheName": "System.String", "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", "SubscriptionId": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Break", + "Name": "EnableSystemAssignedIdentity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelineAppend", + "Name": "FilesystemSubnet", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpPipelinePrepend", + "Name": "KeyEncryptionKeyUrl", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Proxy", + "Name": "MaintenanceWindowDayOfWeek", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyCredential", + "Name": "MaintenanceWindowTimeOfDayUtc", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProxyUseDefaultCredentials", + "Name": "SettingContainer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "Get", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + "Name": "SettingImportPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SettingLoggingContainer", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SkuName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceVaultId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageCapacityTiB", + "Type": { + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "CreateViaJsonString", + "Parameters": [ { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3415,31 +2842,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List1", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "JsonString", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3450,12 +2857,15 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3466,15 +2876,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3489,7 +2895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3504,7 +2910,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3520,7 +2926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3532,11 +2938,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3547,11 +2953,26 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3566,7 +2987,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3578,16 +3017,48 @@ ] }, { - "Name": "List", + "Name": "CreateViaJsonFilePath", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3596,6 +3067,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3606,7 +3092,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3621,7 +3122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3636,7 +3137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3652,7 +3153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3662,13 +3163,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -3683,7 +3199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3698,7 +3214,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3710,59 +3244,48 @@ ] }, { - "Name": "GetViaIdentity", + "Name": "CreateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Break", + "Name": "SubscriptionId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3773,12 +3296,26 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSystemAssignedIdentity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3789,12 +3326,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "FilesystemSubnet", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3805,11 +3341,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "KeyEncryptionKeyUrl", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3820,11 +3356,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "MaintenanceWindowDayOfWeek", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3835,11 +3371,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "MaintenanceWindowTimeOfDayUtc", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3847,23 +3383,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "SettingContainer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3874,11 +3401,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "SettingImportPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3889,12 +3416,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "SettingLoggingContainer", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3905,12 +3431,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "SkuName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3921,11 +3446,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "SourceVaultId", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3936,11 +3461,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "StorageCapacityTiB", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3951,11 +3476,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -3963,161 +3488,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzStorageCacheAmlFileSystemSubnetRequiredSize", - "Name": "Get-AzStorageCacheAmlFileSystemSubnetRequiredSize", - "ClassName": "Get-AzStorageCacheAmlFileSystemSubnetRequiredSize", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "GetExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "GetExpanded", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "UserAssignedIdentity", "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false @@ -4129,11 +3507,12 @@ }, { "ParameterMetadata": { - "Name": "SkuName", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -4144,11 +3523,15 @@ }, { "ParameterMetadata": { - "Name": "StorageCapacityTiB", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4159,15 +3542,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4182,7 +3561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4197,7 +3576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4213,7 +3592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4223,13 +3602,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4244,7 +3638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4259,7 +3653,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4271,7 +3683,7 @@ ] }, { - "Name": "GetViaIdentityExpanded", + "Name": "CreateViaIdentityExpanded", "Parameters": [ { "ParameterMetadata": { @@ -4279,15 +3691,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AmlFilesystemName": "System.String", - "CacheName": "System.String", "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", "SubscriptionId": "System.String" } }, @@ -4300,26 +3708,26 @@ }, { "ParameterMetadata": { - "Name": "SkuName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StorageCapacityTiB", + "Name": "EnableSystemAssignedIdentity", "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4330,15 +3738,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "FilesystemSubnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4349,11 +3753,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "KeyEncryptionKeyUrl", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4364,12 +3768,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "MaintenanceWindowDayOfWeek", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4380,12 +3783,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "MaintenanceWindowTimeOfDayUtc", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4396,11 +3798,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "SettingContainer", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4411,11 +3813,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "SettingImportPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4426,11 +3828,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "SettingLoggingContainer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4438,19 +3840,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { "Name": "SkuName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4461,11 +3858,11 @@ }, { "ParameterMetadata": { - "Name": "StorageCapacityTiB", + "Name": "SourceVaultId", "Type": { "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4476,15 +3873,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "StorageCapacityTiB", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4495,11 +3888,92 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentity", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=8.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.4.6.500, 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.4.6.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4514,7 +3988,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4530,7 +4004,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4540,13 +4014,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4561,7 +4050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4576,7 +4065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4584,156 +4073,41 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzStorageCacheAscUsage", - "Name": "Get-AzStorageCacheAscUsage", - "ClassName": "Get-AzStorageCacheAscUsage", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceUsage", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceUsage, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CurrentValue": "System.Nullable`1[System.Int32]", - "Limit": "System.Nullable`1[System.Int32]", - "NameLocalizedValue": "System.String", - "NameValue": "System.String", - "Unit": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Location", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4744,15 +4118,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4767,7 +4137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4782,7 +4152,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4798,7 +4168,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4808,13 +4178,28 @@ "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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4829,7 +4214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4844,7 +4229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4852,34 +4237,44 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzStorageCacheSku", - "Name": "Get-AzStorageCacheSku", - "ClassName": "Get-AzStorageCacheSku", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "List", + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzStorageCacheAmlFileSystem", + "Name": "Remove-AzStorageCacheAmlFileSystem", + "ClassName": "Remove-AzStorageCacheAmlFileSystem", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSku", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSku, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capability": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities[]", - "LocationInfo": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo[]", - "Restriction": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction[]", - "Name": "System.String", - "ResourceType": "System.String", - "Location": "System.String[]" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -4887,13 +4282,48 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -4906,7 +4336,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4915,7 +4354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4924,7 +4363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4934,17 +4373,35 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -4953,7 +4410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4962,23 +4419,67 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "Delete", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -4997,7 +4498,22 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5012,7 +4528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5027,7 +4543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5043,7 +4559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5053,13 +4569,43 @@ "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.4.6.500, 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.4.6.500, 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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5074,7 +4620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5089,7 +4635,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5099,225 +4663,29 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzStorageCacheTarget", - "Name": "Get-AzStorageCacheTarget", - "ClassName": "Get-AzStorageCacheTarget", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTarget", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTarget, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Junction": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[]", - "UnknownAttribute": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUnknownProperties", - "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType]", - "TargetType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType]", - "AllocationPercentage": "System.Nullable`1[System.Int32]", - "BlobNfVerificationTimer": "System.Nullable`1[System.Int32]", - "BlobNfWriteBackTimer": "System.Nullable`1[System.Int32]", - "Nfs3VerificationTimer": "System.Nullable`1[System.Int32]", - "Nfs3WriteBackTimer": "System.Nullable`1[System.Int32]", - "BlobNfTarget": "System.String", - "BlobNfUsageModel": "System.String", - "ClfTarget": "System.String", - "Nfs3Target": "System.String", - "Nfs3UsageModel": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "List", + "Name": "DeleteViaIdentity", "Parameters": [ { "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -5330,7 +4698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5341,11 +4709,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5356,12 +4724,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5372,11 +4739,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5388,11 +4755,12 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -5403,11 +4771,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5418,11 +4786,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5430,68 +4798,62 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Get", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "CacheName", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5499,7 +4861,12 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5510,7 +4877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5521,11 +4888,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5536,12 +4903,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5552,11 +4918,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5568,11 +4934,12 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -5583,11 +4950,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5598,11 +4965,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5610,48 +4977,29 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Proxy", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5662,11 +5010,11 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5677,189 +5025,14 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5873,25 +5046,20 @@ ] }, { - "VerbName": "Get", - "NounName": "AzStorageCacheUsageModel", - "Name": "Get-AzStorageCacheUsageModel", - "ClassName": "Get-AzStorageCacheUsageModel", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, + "VerbName": "Stop", + "NounName": "AzStorageCacheAmlFilesystemArchive", + "Name": "Stop-AzStorageCacheAmlFilesystemArchive", + "ClassName": "Stop-AzStorageCacheAmlFilesystemArchive", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "List", + "DefaultParameterSetName": "Cancel", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUsageModel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUsageModel, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisplayDescription": "System.String", - "ModelName": "System.String", - "TargetType": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -5899,13 +5067,45 @@ } ], "Parameters": [ + { + "Name": "AmlFilesystemName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "SubscriptionId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -5918,7 +5118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5927,7 +5127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5936,7 +5136,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5946,17 +5146,26 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Proxy", "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -5965,7 +5174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5974,23 +5183,64 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "Cancel", "Parameters": [ + { + "ParameterMetadata": { + "Name": "AmlFilesystemName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6009,7 +5259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6024,7 +5274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6039,7 +5289,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6055,7 +5305,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6067,11 +5317,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6082,11 +5332,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6097,11 +5347,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProxyCredential", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6109,208 +5359,32 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Invoke", - "NounName": "AzStorageCacheAmlFileSystemArchive", - "Name": "Invoke-AzStorageCacheAmlFileSystemArchive", - "ClassName": "Invoke-AzStorageCacheAmlFileSystemArchive", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ArchiveExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AmlFilesystemName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FilesystemPath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ArchiveExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AmlFilesystemName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6318,20 +5392,31 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "CancelViaIdentity", + "Parameters": [ { "ParameterMetadata": { - "Name": "FilesystemPath", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -6344,7 +5429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6359,7 +5444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6374,7 +5459,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6390,7 +5475,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6406,7 +5491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6421,7 +5506,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6436,7 +5521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6451,7 +5536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6459,44 +5544,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ArchiveViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FilesystemPath", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6504,7 +5562,12 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -6515,7 +5578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6530,7 +5593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6545,7 +5608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6561,7 +5624,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6577,7 +5640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6592,7 +5655,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6607,7 +5670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6622,7 +5685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6630,145 +5693,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "FilesystemPath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "ProgressAction", "AliasList": [ - "AzureRMContext", - "AzureCredential" + "proga" ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6782,20 +5717,20 @@ ] }, { - "VerbName": "Invoke", - "NounName": "AzStorageCacheInvalidateTarget", - "Name": "Invoke-AzStorageCacheInvalidateTarget", - "ClassName": "Invoke-AzStorageCacheInvalidateTarget", + "VerbName": "Test", + "NounName": "AzStorageCacheAmlFileSystemSubnet", + "Name": "Test-AzStorageCacheAmlFileSystemSubnet", + "ClassName": "Test-AzStorageCacheAmlFileSystemSubnet", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Invalidate", + "DefaultParameterSetName": "CheckExpanded", "OutputTypes": [ { "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -6804,57 +5739,65 @@ ], "Parameters": [ { - "Name": "CacheName", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "StorageTargetName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubscriptionId", + "Name": "SkuName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "StorageCapacityTiB", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -6867,16 +5810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6885,7 +5819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6894,7 +5828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6904,26 +5838,17 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6932,7 +5857,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -6941,7 +5866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6950,67 +5875,34 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Invalidate", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageTargetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7029,22 +5921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7059,7 +5936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7074,7 +5951,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7090,7 +5967,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7102,11 +5979,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7117,11 +5994,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7132,11 +6009,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7147,11 +6024,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7162,11 +6039,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7178,44 +6058,30 @@ ] }, { - "Name": "InvalidateViaIdentity", + "Name": "CheckExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7226,11 +6092,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "SkuName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7241,11 +6107,45 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "StorageCapacityTiB", + "Type": { + "Namespace": "System", + "Name": "System.Single", + "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7256,12 +6156,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7272,11 +6171,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "HttpPipelineAppend", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7288,11 +6187,12 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -7307,7 +6207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7322,7 +6222,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7337,7 +6237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7352,7 +6252,25 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7364,19 +6282,30 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "CheckViaJsonFilePath", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "JsonFilePath", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7387,11 +6316,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7406,7 +6339,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7421,7 +6354,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7437,7 +6370,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7449,11 +6382,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7464,11 +6397,11 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7479,11 +6412,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7494,11 +6427,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7509,11 +6442,14 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7523,300 +6459,345 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCache", - "Name": "New-AzStorageCache", - "ClassName": "New-AzStorageCache", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICache", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICache, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DirectoryServicesSetting": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheIdentityUserAssignedIdentities", - "Tag": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheTags", - "HealthCondition": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition[]", - "SecuritySettingAccessPolicy": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "PrimingJob": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob[]", - "SpaceAllocation": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType]", - "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "UpgradeStatusFirmwareUpdateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType]", - "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType]", - "EncryptionSettingRotationToLatestKeyVersionEnabled": "System.Nullable`1[System.Boolean]", - "UpgradeSettingUpgradeScheduleEnabled": "System.Nullable`1[System.Boolean]", - "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", - "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "UpgradeSettingScheduledTime": "System.Nullable`1[System.DateTime]", - "UpgradeStatusFirmwareUpdateDeadline": "System.Nullable`1[System.DateTime]", - "UpgradeStatusLastFirmwareUpdate": "System.Nullable`1[System.DateTime]", - "SizeGb": "System.Nullable`1[System.Int32]", - "NetworkSettingMtu": "System.Nullable`1[System.Int32]", - "Type": "System.String", - "SystemDataLastModifiedBy": "System.String", - "UpgradeStatusCurrentFirmwareVersion": "System.String", - "SystemDataCreatedBy": "System.String", - "Id": "System.String", - "SkuName": "System.String", - "SourceVaultId": "System.String", - "HealthStatusDescription": "System.String", - "UpgradeStatusPendingFirmwareVersion": "System.String", - "NetworkSettingNtpServer": "System.String", - "NetworkSettingDnsSearchDomain": "System.String", - "Name": "System.String", - "Location": "System.String", - "KeyEncryptionKeyUrl": "System.String", - "IdentityTenantId": "System.String", - "IdentityPrincipalId": "System.String", - "Subnet": "System.String", - "NetworkSettingUtilityAddress": "System.String[]", - "NetworkSettingDnsServer": "System.String[]", - "MountAddress": "System.String[]", - "Zone": "System.String[]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CacheSizeGb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DirectoryServicesSetting", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EncryptionSettingRotationToLatestKeyVersionEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkSettingDnsSearchDomain", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "CheckViaJsonString", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "JsonString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.4.6.500, 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=8.0.0.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.4.6.500, 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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Update", + "NounName": "AzStorageCacheAmlFileSystem", + "Name": "Update-AzStorageCacheAmlFileSystem", + "ClassName": "Update-AzStorageCacheAmlFileSystem", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystem", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystem, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IUserAssignedIdentities", + "HsmArchiveStatus": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive]", + "Zone": "System.Collections.Generic.List`1[System.String]", + "ThroughputProvisionedMBps": "System.Nullable`1[System.Int32]", + "StorageCapacityTiB": "System.Nullable`1[System.Single]", + "SourceVaultId": "System.String", + "SkuName": "System.String", + "SettingLoggingContainer": "System.String", + "SettingImportPrefix": "System.String", + "SettingContainer": "System.String", + "ProvisioningState": "System.String", + "MaintenanceWindowTimeOfDayUtc": "System.String", + "MaintenanceWindowDayOfWeek": "System.String", + "KeyEncryptionKeyUrl": "System.String", + "IdentityTenantId": "System.String", + "IdentityPrincipalId": "System.String", + "HealthStatusDescription": "System.String", + "HealthStatusCode": "System.String", + "HealthState": "System.String", + "FilesystemSubnet": "System.String", + "ContainerStorageInterfaceStorageClass": "System.String", + "ContainerStorageInterfacePersistentVolumeClaim": "System.String", + "ContainerStorageInterfacePersistentVolume": "System.String", + "ClientInfoMountCommand": "System.String", + "ClientInfoMgsAddress": "System.String", + "ClientInfoLustreVersion": "System.String", + "IdentityType": "System.String", + "AzureAsyncOperation": "System.String" + } }, - "ValidateNotNullOrEmpty": false - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "NetworkSettingDnsServer", + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkSettingMtu", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkSettingNtpServer", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SecuritySettingAccessPolicy", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "SkuName", + "Name": "KeyEncryptionKeyUrl", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SourceVaultId", + "Name": "MaintenanceWindowDayOfWeek", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Subnet", + "Name": "MaintenanceWindowTimeOfDayUtc", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "SourceVaultId", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UpgradeSettingScheduledTime", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UpgradeSettingUpgradeScheduleEnabled", + "Name": "JsonFilePath", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Zone", + "Name": "JsonString", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7829,7 +6810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7838,7 +6819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7847,7 +6828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7856,7 +6837,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7866,7 +6847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7876,7 +6857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7885,7 +6866,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -7894,7 +6875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7903,25 +6884,37 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "__AllParameterSets", - "Parameters": [ - { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "UpdateViaJsonString", + "Parameters": [ + { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "CacheName" + "AmlFilesystemName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7936,7 +6929,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7951,7 +6944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -7962,49 +6955,30 @@ }, { "ParameterMetadata": { - "Name": "CacheSizeGb", + "Name": "JsonString", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DirectoryServicesSetting", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8015,11 +6989,11 @@ }, { "ParameterMetadata": { - "Name": "EncryptionSettingRotationToLatestKeyVersionEnabled", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8030,11 +7004,11 @@ }, { "ParameterMetadata": { - "Name": "IdentityType", + "Name": "Break", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8045,11 +7019,12 @@ }, { "ParameterMetadata": { - "Name": "IdentityUserAssignedIdentity", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -8060,11 +7035,12 @@ }, { "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", + "Name": "HttpPipelinePrepend", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -8075,11 +7051,11 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "NoWait", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8090,11 +7066,11 @@ }, { "ParameterMetadata": { - "Name": "NetworkSettingDnsSearchDomain", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8105,12 +7081,11 @@ }, { "ParameterMetadata": { - "Name": "NetworkSettingDnsServer", + "Name": "ProxyCredential", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8121,11 +7096,11 @@ }, { "ParameterMetadata": { - "Name": "NetworkSettingMtu", + "Name": "ProxyUseDefaultCredentials", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8136,42 +7111,67 @@ }, { "ParameterMetadata": { - "Name": "NetworkSettingNtpServer", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaJsonFilePath", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SecuritySettingAccessPolicy", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SkuName", + "Name": "SubscriptionId", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8182,11 +7182,30 @@ }, { "ParameterMetadata": { - "Name": "SourceVaultId", + "Name": "JsonFilePath", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8197,11 +7216,11 @@ }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8212,11 +7231,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Break", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8227,11 +7246,28 @@ }, { "ParameterMetadata": { - "Name": "UpgradeSettingScheduledTime", + "Name": "HttpPipelineAppend", "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false }, @@ -8242,11 +7278,11 @@ }, { "ParameterMetadata": { - "Name": "UpgradeSettingUpgradeScheduleEnabled", + "Name": "NoWait", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8257,12 +7293,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Proxy", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" }, "ValidateNotNullOrEmpty": false }, @@ -8273,15 +7308,11 @@ }, { "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8292,11 +7323,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ProxyUseDefaultCredentials", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8307,11 +7338,14 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8319,15 +7353,52 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "AmlFilesystemName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8338,12 +7409,11 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "KeyEncryptionKeyUrl", "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8354,11 +7424,11 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "MaintenanceWindowDayOfWeek", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8369,11 +7439,11 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "MaintenanceWindowTimeOfDayUtc", "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8384,11 +7454,11 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "SourceVaultId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -8399,11 +7469,30 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.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.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8411,20514 +7500,759 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheAmlFileSystem", - "Name": "New-AzStorageCacheAmlFileSystem", - "ClassName": "New-AzStorageCacheAmlFileSystem", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystem", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystem, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HsmArchiveStatus": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive[]", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUserAssignedIdentities", - "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType]", - "MaintenanceWindowDayOfWeek": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType]", - "ThroughputProvisionedMBps": "System.Nullable`1[System.Int32]", - "StorageCapacityTiB": "System.Nullable`1[System.Single]", - "AzureAsyncOperation": "System.String", - "SourceVaultId": "System.String", - "SkuName": "System.String", - "SettingLoggingContainer": "System.String", - "SettingImportPrefix": "System.String", - "SettingContainer": "System.String", - "MaintenanceWindowTimeOfDayUtc": "System.String", - "KeyEncryptionKeyUrl": "System.String", - "IdentityTenantId": "System.String", - "HealthStatusDescription": "System.String", - "HealthStatusCode": "System.String", - "FilesystemSubnet": "System.String", - "ContainerStorageInterfaceStorageClass": "System.String", - "ContainerStorageInterfacePersistentVolumeClaim": "System.String", - "ContainerStorageInterfacePersistentVolume": "System.String", - "ClientInfoMountCommand": "System.String", - "ClientInfoMgsAddress": "System.String", - "ClientInfoLustreVersion": "System.String", - "IdentityPrincipalId": "System.String", - "Zone": "System.String[]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FilesystemSubnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaintenanceWindowDayOfWeek", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaintenanceWindowTimeOfDayUtc", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SettingContainer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SettingImportPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SettingLoggingContainer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FilesystemSubnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowDayOfWeek", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowTimeOfDayUtc", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SettingContainer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SettingImportPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SettingLoggingContainer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheDirectorySettingObject", - "Name": "New-AzStorageCacheDirectorySettingObject", - "ClassName": "New-AzStorageCacheDirectorySettingObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.CacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.CacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings" - }, - { - "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": "ActiveDirectoryCacheNetBiosName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ActiveDirectoryDomainName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ActiveDirectoryDomainNetBiosName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ActiveDirectoryPrimaryDnsIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ActiveDirectorySecondaryDnsIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CredentialsBindDn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CredentialsBindPassword", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CredentialsPassword", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CredentialsUsername", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadAutoDownloadCertificate", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadCaCertificateUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadEncryptLdapConnection", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadExtendedGroup", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadGroupFileUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadLdapBaseDn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadLdapServer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadRequireValidCertificate", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadUserFileUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UsernameDownloadUsernameSource", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ActiveDirectoryCacheNetBiosName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDirectoryDomainName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDirectoryDomainNetBiosName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDirectoryPrimaryDnsIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDirectorySecondaryDnsIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CredentialsBindDn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CredentialsBindPassword", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CredentialsPassword", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CredentialsUsername", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadAutoDownloadCertificate", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadCaCertificateUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadEncryptLdapConnection", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadExtendedGroup", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadGroupFileUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadLdapBaseDn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadLdapServer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadRequireValidCertificate", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadUserFileUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsernameDownloadUsernameSource", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheNamespaceJunctionObject", - "Name": "New-AzStorageCacheNamespaceJunctionObject", - "ClassName": "New-AzStorageCacheNamespaceJunctionObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.NamespaceJunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.NamespaceJunction, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NamespacePath": "System.String", - "NfsAccessPolicy": "System.String", - "NfsExport": "System.String", - "TargetPath": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - { - "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": "NamespacePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NfsAccessPolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NfsExport", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TargetPath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "NamespacePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NfsAccessPolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NfsExport", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetPath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheNfsAccessPolicyObject", - "Name": "New-AzStorageCacheNfsAccessPolicyObject", - "ClassName": "New-AzStorageCacheNfsAccessPolicyObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.NfsAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.NfsAccessPolicy, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AccessRule": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[]", - "Name": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - { - "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": "AccessRule", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AccessRule", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheNfsAccessRuleObject", - "Name": "New-AzStorageCacheNfsAccessRuleObject", - "ClassName": "New-AzStorageCacheNfsAccessRuleObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.NfsAccessRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.NfsAccessRule, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Access": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess", - "Scope": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope", - "RootSquash": "System.Nullable`1[System.Boolean]", - "SubmountAccess": "System.Nullable`1[System.Boolean]", - "Suid": "System.Nullable`1[System.Boolean]", - "AnonymousGid": "System.String", - "AnonymousUid": "System.String", - "Filter": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - { - "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": "Access", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AnonymousGid", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AnonymousUid", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Filter", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RootSquash", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubmountAccess", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Suid", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Access", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Scope", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AnonymousGid", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AnonymousUid", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RootSquash", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubmountAccess", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Suid", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCachePrimingJobObject", - "Name": "New-AzStorageCachePrimingJobObject", - "ClassName": "New-AzStorageCachePrimingJobObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.PrimingJob", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.PrimingJob, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState]", - "PercentComplete": "System.Nullable`1[System.Double]", - "Detail": "System.String", - "Id": "System.String", - "Name": "System.String", - "PrimingManifestUrl": "System.String", - "Status": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob" - }, - { - "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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrimingManifestUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingManifestUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheTarget", - "Name": "New-AzStorageCacheTarget", - "ClassName": "New-AzStorageCacheTarget", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTarget", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTarget, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Junction": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[]", - "UnknownAttribute": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUnknownProperties", - "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType]", - "TargetType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType]", - "AllocationPercentage": "System.Nullable`1[System.Int32]", - "BlobNfVerificationTimer": "System.Nullable`1[System.Int32]", - "BlobNfWriteBackTimer": "System.Nullable`1[System.Int32]", - "Nfs3VerificationTimer": "System.Nullable`1[System.Int32]", - "Nfs3WriteBackTimer": "System.Nullable`1[System.Int32]", - "BlobNfTarget": "System.String", - "BlobNfUsageModel": "System.String", - "ClfTarget": "System.String", - "Nfs3Target": "System.String", - "Nfs3UsageModel": "System.String" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BlobNfTarget", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BlobNfUsageModel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BlobNfVerificationTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BlobNfWriteBackTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClfTarget", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Junction", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Nfs3Target", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Nfs3UsageModel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Nfs3VerificationTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Nfs3WriteBackTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "State", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TargetType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UnknownAttribute", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BlobNfTarget", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BlobNfUsageModel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BlobNfVerificationTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BlobNfWriteBackTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ClfTarget", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Junction", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Nfs3Target", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Nfs3UsageModel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Nfs3VerificationTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Nfs3WriteBackTimer", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UnknownAttribute", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzStorageCacheTargetSpaceAllocationObject", - "Name": "New-AzStorageCacheTargetSpaceAllocationObject", - "ClassName": "New-AzStorageCacheTargetSpaceAllocationObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 0, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.StorageTargetSpaceAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.StorageTargetSpaceAllocation, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllocationPercentage": "System.Nullable`1[System.Int32]", - "Name": "System.String" - }, - "Methods": [ - { - "Name": "FromJson", - "Parameters": [ - { - "Name": "node", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - { - "Name": "ToJson", - "Parameters": [ - { - "Name": "container", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonObject" - }, - { - "Name": "serializationMode", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SerializationMode" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - { - "Name": "DeserializeFromDictionary", - "Parameters": [ - { - "Name": "content", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - { - "Name": "DeserializeFromPSObject", - "Parameters": [ - { - "Name": "content", - "Type": "System.Management.Automation.PSObject" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - { - "Name": "FromJsonString", - "Parameters": [ - { - "Name": "jsonText", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - { - "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": "AllocationPercentage", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AllocationPercentage", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzStorageCache", - "Name": "Remove-AzStorageCache", - "ClassName": "Remove-AzStorageCache", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzStorageCacheAmlFileSystem", - "Name": "Remove-AzStorageCacheAmlFileSystem", - "ClassName": "Remove-AzStorageCacheAmlFileSystem", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzStorageCacheTarget", - "Name": "Remove-AzStorageCacheTarget", - "ClassName": "Remove-AzStorageCacheTarget", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Restore", - "NounName": "AzStorageCacheTargetSetting", - "Name": "Restore-AzStorageCacheTargetSetting", - "ClassName": "Restore-AzStorageCacheTargetSetting", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Restore", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageTargetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Restore", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageTargetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "RestoreViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Resume", - "NounName": "AzStorageCachePrimingJob", - "Name": "Resume-AzStorageCachePrimingJob", - "ClassName": "Resume-AzStorageCachePrimingJob", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ResumeExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ResumeExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResumeViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Resume", - "NounName": "AzStorageCacheTarget", - "Name": "Resume-AzStorageCacheTarget", - "ClassName": "Resume-AzStorageCacheTarget", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Resume", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Resume", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResumeViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Start", - "NounName": "AzStorageCache", - "Name": "Start-AzStorageCache", - "ClassName": "Start-AzStorageCache", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Start", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Start", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "StartViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Start", - "NounName": "AzStorageCachePrimingJob", - "Name": "Start-AzStorageCachePrimingJob", - "ClassName": "Start-AzStorageCachePrimingJob", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "StartExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrimingJobName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrimingManifestUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "StartExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingManifestUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "StartViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingManifestUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PrimingJobName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingManifestUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Stop", - "NounName": "AzStorageCache", - "Name": "Stop-AzStorageCache", - "ClassName": "Stop-AzStorageCache", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Stop", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Stop", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "StopViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Stop", - "NounName": "AzStorageCacheAmlFilesystemArchive", - "Name": "Stop-AzStorageCacheAmlFilesystemArchive", - "ClassName": "Stop-AzStorageCacheAmlFilesystemArchive", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Cancel", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AmlFilesystemName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Cancel", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AmlFilesystemName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "CancelViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Stop", - "NounName": "AzStorageCachePrimingJob", - "Name": "Stop-AzStorageCachePrimingJob", - "ClassName": "Stop-AzStorageCachePrimingJob", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "StopExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "StopExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "StopViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Suspend", - "NounName": "AzStorageCachePrimingJob", - "Name": "Suspend-AzStorageCachePrimingJob", - "ClassName": "Suspend-AzStorageCachePrimingJob", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "PauseExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "PauseExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "PauseViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PrimingJobId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Suspend", - "NounName": "AzStorageCacheTarget", - "Name": "Suspend-AzStorageCacheTarget", - "ClassName": "Suspend-AzStorageCacheTarget", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Suspend", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Suspend", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "StorageTargetName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SuspendViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Test", - "NounName": "AzStorageCacheAmlFileSystemSubnet", - "Name": "Test-AzStorageCacheAmlFileSystemSubnet", - "ClassName": "Test-AzStorageCacheAmlFileSystemSubnet", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CheckExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "CheckExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageCapacityTiB", - "Type": { - "Namespace": "System", - "Name": "System.Single", - "AssemblyQualifiedName": "System.Single, System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzStorageCache", - "Name": "Update-AzStorageCache", - "ClassName": "Update-AzStorageCache", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICache", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICache, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DirectoryServicesSetting": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheIdentityUserAssignedIdentities", - "Tag": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheTags", - "HealthCondition": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition[]", - "SecuritySettingAccessPolicy": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "PrimingJob": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob[]", - "SpaceAllocation": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType]", - "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "UpgradeStatusFirmwareUpdateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType]", - "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType]", - "EncryptionSettingRotationToLatestKeyVersionEnabled": "System.Nullable`1[System.Boolean]", - "UpgradeSettingUpgradeScheduleEnabled": "System.Nullable`1[System.Boolean]", - "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", - "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "UpgradeSettingScheduledTime": "System.Nullable`1[System.DateTime]", - "UpgradeStatusFirmwareUpdateDeadline": "System.Nullable`1[System.DateTime]", - "UpgradeStatusLastFirmwareUpdate": "System.Nullable`1[System.DateTime]", - "SizeGb": "System.Nullable`1[System.Int32]", - "NetworkSettingMtu": "System.Nullable`1[System.Int32]", - "Type": "System.String", - "SystemDataLastModifiedBy": "System.String", - "UpgradeStatusCurrentFirmwareVersion": "System.String", - "SystemDataCreatedBy": "System.String", - "Id": "System.String", - "SkuName": "System.String", - "SourceVaultId": "System.String", - "HealthStatusDescription": "System.String", - "UpgradeStatusPendingFirmwareVersion": "System.String", - "NetworkSettingNtpServer": "System.String", - "NetworkSettingDnsSearchDomain": "System.String", - "Name": "System.String", - "Location": "System.String", - "KeyEncryptionKeyUrl": "System.String", - "IdentityTenantId": "System.String", - "IdentityPrincipalId": "System.String", - "Subnet": "System.String", - "NetworkSettingUtilityAddress": "System.String[]", - "NetworkSettingDnsServer": "System.String[]", - "MountAddress": "System.String[]", - "Zone": "System.String[]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CacheSizeGb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DirectoryServicesSetting", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EncryptionSettingRotationToLatestKeyVersionEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkSettingDnsSearchDomain", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkSettingDnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkSettingMtu", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkSettingNtpServer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SecuritySettingAccessPolicy", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UpgradeSettingScheduledTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UpgradeSettingUpgradeScheduleEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "CacheName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CacheSizeGb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DirectoryServicesSetting", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EncryptionSettingRotationToLatestKeyVersionEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingDnsSearchDomain", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingDnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingMtu", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingNtpServer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SecuritySettingAccessPolicy", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UpgradeSettingScheduledTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UpgradeSettingUpgradeScheduleEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CacheSizeGb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DirectoryServicesSetting", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EncryptionSettingRotationToLatestKeyVersionEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingDnsSearchDomain", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingDnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingMtu", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingNtpServer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SecuritySettingAccessPolicy", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UpgradeSettingScheduledTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UpgradeSettingUpgradeScheduleEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheSizeGb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DirectoryServicesSetting", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EncryptionSettingRotationToLatestKeyVersionEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingDnsSearchDomain", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingDnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingMtu", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkSettingNtpServer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SecuritySettingAccessPolicy", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UpgradeSettingScheduledTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UpgradeSettingUpgradeScheduleEnabled", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzStorageCacheAmlFileSystem", - "Name": "Update-AzStorageCacheAmlFileSystem", - "ClassName": "Update-AzStorageCacheAmlFileSystem", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystem", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystem, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HsmArchiveStatus": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive[]", - "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUserAssignedIdentities", - "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType]", - "MaintenanceWindowDayOfWeek": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType]", - "ThroughputProvisionedMBps": "System.Nullable`1[System.Int32]", - "StorageCapacityTiB": "System.Nullable`1[System.Single]", - "AzureAsyncOperation": "System.String", - "SourceVaultId": "System.String", - "SkuName": "System.String", - "SettingLoggingContainer": "System.String", - "SettingImportPrefix": "System.String", - "SettingContainer": "System.String", - "MaintenanceWindowTimeOfDayUtc": "System.String", - "KeyEncryptionKeyUrl": "System.String", - "IdentityTenantId": "System.String", - "HealthStatusDescription": "System.String", - "HealthStatusCode": "System.String", - "FilesystemSubnet": "System.String", - "ContainerStorageInterfaceStorageClass": "System.String", - "ContainerStorageInterfacePersistentVolumeClaim": "System.String", - "ContainerStorageInterfacePersistentVolume": "System.String", - "ClientInfoMountCommand": "System.String", - "ClientInfoMgsAddress": "System.String", - "ClientInfoLustreVersion": "System.String", - "IdentityPrincipalId": "System.String", - "Zone": "System.String[]" - } - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaintenanceWindowDayOfWeek", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaintenanceWindowTimeOfDayUtc", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AmlFilesystemName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowDayOfWeek", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowTimeOfDayUtc", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowDayOfWeek", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowTimeOfDayUtc", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "KeyEncryptionKeyUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowDayOfWeek", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaintenanceWindowTimeOfDayUtc", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVaultId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzStorageCacheFirmware", - "Name": "Update-AzStorageCacheFirmware", - "ClassName": "Update-AzStorageCacheFirmware", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Upgrade", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Upgrade", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpgradeViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzStorageCacheSpaceAllocation", - "Name": "Update-AzStorageCacheSpaceAllocation", - "ClassName": "Update-AzStorageCacheSpaceAllocation", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SpaceViaIdentity", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SpaceAllocation", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Space", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SpaceAllocation", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SpaceViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SpaceAllocation", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SpaceAllocation", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Update", - "NounName": "AzStorageCacheTargetDns", - "Name": "Update-AzStorageCacheTargetDns", - "ClassName": "Update-AzStorageCacheTargetDns", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Refresh", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageTargetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Refresh", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "CacheName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageTargetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.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=6.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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "RefreshViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AmlFilesystemName": "System.String", - "CacheName": "System.String", - "Id": "System.String", - "Location": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "StorageTargetName": "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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, 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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.2.21.500, 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.2.21.500, 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=6.0.0.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.2.21.500, 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.2.21.500, 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.StorageCache.Runtime.SendAsyncStep": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Runtime.IEventListener" - }, - { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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.StorageCache.Runtime.IEventListener" - }, - { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.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=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "System.IAsyncResult": { - "Namespace": "System", - "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Delegate[]": { - "Namespace": "System", - "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Delegate" - }, - "System.Delegate": { - "Namespace": "System", - "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheDirectorySettings, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ActiveDirectoryDomainJoined": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "UsernameDownloadUsernameDownloaded": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "UsernameDownloadUsernameSource": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "UsernameDownloadRequireValidCertificate": "System.Nullable`1[System.Boolean]", - "UsernameDownloadExtendedGroup": "System.Nullable`1[System.Boolean]", - "UsernameDownloadEncryptLdapConnection": "System.Nullable`1[System.Boolean]", - "UsernameDownloadAutoDownloadCertificate": "System.Nullable`1[System.Boolean]", - "CredentialsBindPassword": "System.String", - "CredentialsPassword": "System.String", - "CredentialsUsername": "System.String", - "ActiveDirectorySecondaryDnsIPAddress": "System.String", - "UsernameDownloadCaCertificateUri": "System.String", - "ActiveDirectoryPrimaryDnsIPAddress": "System.String", - "ActiveDirectoryDomainNetBiosName": "System.String", - "UsernameDownloadGroupFileUri": "System.String", - "UsernameDownloadLdapBaseDn": "System.String", - "UsernameDownloadLdapServer": "System.String", - "ActiveDirectoryDomainName": "System.String", - "UsernameDownloadUserFileUri": "System.String", - "CredentialsBindDn": "System.String", - "ActiveDirectoryCacheNetBiosName": "System.String" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.DomainJoinedType, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.DomainJoinedType" - } - ], - "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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.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.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameDownloadedType, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.UsernameDownloadedType" - } - ], - "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.StorageCache.Support.UsernameSource]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.UsernameSource, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.UsernameSource" - } - ], - "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.Boolean]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheIdentityUserAssignedIdentities": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheIdentityUserAssignedIdentities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheIdentityUserAssignedIdentities, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheTags": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheTags", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICacheTags, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.ICondition, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Timestamp": "System.Nullable`1[System.DateTime]", - "Message": "System.String" - } - }, - "System.Nullable`1[System.DateTime]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.DateTime" - ] - }, - "System.DateTime": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessPolicy, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AccessRule": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[]", - "Name": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INfsAccessRule, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Access": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess", - "Scope": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope", - "RootSquash": "System.Nullable`1[System.Boolean]", - "SubmountAccess": "System.Nullable`1[System.Boolean]", - "Suid": "System.Nullable`1[System.Boolean]", - "AnonymousGid": "System.String", - "AnonymousUid": "System.String", - "Filter": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleAccess, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.NfsAccessRuleAccess" - } - ], - "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.StorageCache.Support.NfsAccessRuleScope": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.NfsAccessRuleScope, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.NfsAccessRuleScope" - } - ], - "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.StorageCache.Models.Api20230501.IPrimingJob[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IPrimingJob, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState]", - "PercentComplete": "System.Nullable`1[System.Double]", - "Detail": "System.String", - "Id": "System.String", - "Name": "System.String", - "PrimingManifestUrl": "System.String", - "Status": "System.String" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.PrimingJobState, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.PrimingJobState" - } - ], - "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.Double]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Double]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Double" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IStorageTargetSpaceAllocation, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllocationPercentage": "System.Nullable`1[System.Int32]", - "Name": "System.String" - } - }, - "System.Nullable`1[System.Int32]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CacheIdentityType, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.CacheIdentityType" - } - ], - "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.StorageCache.Support.CreatedByType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.CreatedByType, Az.StorageCache.private, Version=0.1.1.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.StorageCache.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.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.FirmwareStatusType, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.FirmwareStatusType" - } - ], - "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.StorageCache.Support.HealthStateType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.HealthStateType, Az.StorageCache.private, Version=0.1.1.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.StorageCache.Support.HealthStateType" - } - ], - "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.StorageCache.Support.ProvisioningStateType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ProvisioningStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.StorageCache.Support.ProvisioningStateType" - } - ], - "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.String[]": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IAmlFilesystemArchive, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType]", - "StatusLastCompletionTime": "System.Nullable`1[System.DateTime]", - "StatusLastStartedTime": "System.Nullable`1[System.DateTime]", - "StatusPercentComplete": "System.Nullable`1[System.Int32]", - "FilesystemPath": "System.String", - "StatusErrorCode": "System.String", - "StatusErrorMessage": "System.String" - } - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + ] }, { - "Name": "Equals", + "Name": "UpdateViaIdentityExpanded", "Parameters": [ { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ArchiveStatusType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IStorageCacheIdentity, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AmlFilesystemName": "System.String", + "Id": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { - "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.StorageCache.Models.Api20230501.IUserAssignedIdentities": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUserAssignedIdentities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUserAssignedIdentities, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "KeyEncryptionKeyUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "MaintenanceWindowDayOfWeek", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "MaintenanceWindowTimeOfDayUtc", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "SourceVaultId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemHealthStateType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "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.StorageCache.Support.AmlFilesystemIdentityType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemIdentityType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "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.StorageCache.Support.AmlFilesystemProvisioningStateType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.AmlFilesystemProvisioningStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "__AllParameterSets", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" + "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.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Break", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.StorageCache.Support.AmlFilesystemProvisioningStateType" - } - ], - "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.StorageCache.Support.MaintenanceDayOfWeekType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.MaintenanceDayOfWeekType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep[], Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "parameterName", - "Type": "System.String" + "ParameterMetadata": { + "Name": "NoWait", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "wordToComplete", - "Type": "System.String" + "ParameterMetadata": { + "Name": "Proxy", + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "ParameterMetadata": { + "Name": "ProxyCredential", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { - "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.StorageCache.Support.MaintenanceDayOfWeekType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { - "Name": "obj", - "Type": "System.Object" + "ParameterMetadata": { + "Name": "ProgressAction", + "AliasList": [ + "proga" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.ActionPreference", + "AssemblyQualifiedName": "System.Management.Automation.ActionPreference, System.Management.Automation, Version=7.4.6.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" + ] } ] + } + ], + "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" }, - "System.Nullable`1[System.Single]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Single]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IUserAssignedIdentities": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IUserAssignedIdentities", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IUserAssignedIdentities, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Single" + "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuCapabilities, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.IAmlFilesystemArchive, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Name": "System.String", - "Value": "System.String" + "StatusLastCompletionTime": "System.Nullable`1[System.DateTime]", + "StatusLastStartedTime": "System.Nullable`1[System.DateTime]", + "StatusPercentComplete": "System.Nullable`1[System.Int32]", + "FilesystemPath": "System.String", + "StatusErrorCode": "System.String", + "StatusErrorMessage": "System.String", + "StatusState": "System.String" } }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo" + "System.Nullable`1[System.DateTime]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.DateTime" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IResourceSkuLocationInfo, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Location": "System.String", - "Zone": "System.String[]" - } + "System.DateTime": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction" + "System.Nullable`1[System.Int32]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IRestriction, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ReasonCode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode]", - "Type": "System.String", - "Value": "System.String[]" - } + "System.Collections.Generic.List`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode]": { + "System.Nullable`1[System.Single]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Single]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode" + "System.Single" ] }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.ReasonCode, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.SendAsyncStep, Az.StorageCache.private, Version=0.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Target": "System.Object", + "Method": "System.Reflection.MethodInfo" + }, "Methods": [ { - "Name": "CompleteArgument", + "Name": "Invoke", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.IEventListener" }, { - "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.StorageCache.Support.ReasonCode" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.ISendAsync" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction[], Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction" - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.INamespaceJunction, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NamespacePath": "System.String", - "NfsAccessPolicy": "System.String", - "NfsExport": "System.String", - "TargetPath": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUnknownProperties": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUnknownProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Models.Api20230501.IUnknownProperties, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.OperationalStateType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "BeginInvoke", "Parameters": [ { - "Name": "commandName", - "Type": "System.String" + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" }, { - "Name": "parameterName", - "Type": "System.String" + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.IEventListener" }, { - "Name": "wordToComplete", - "Type": "System.String" + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.ISendAsync" }, { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" + "Name": "__callback", + "Type": "System.AsyncCallback" }, { - "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.StorageCache.Support.OperationalStateType" + "Name": "object", + "Type": "System.Object" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.IAsyncResult" }, { - "Name": "Equals", + "Name": "EndInvoke", "Parameters": [ { - "Name": "obj", - "Type": "System.Object" + "Name": "result", + "Type": "System.IAsyncResult" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType" - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Support.StorageTargetType, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Methods": [ - { - "Name": "CompleteArgument", + "Name": "GetObjectData", "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": "info", + "Type": "System.Runtime.Serialization.SerializationInfo" }, { - "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.StorageCache.Support.StorageTargetType" + "Name": "context", + "Type": "System.Runtime.Serialization.StreamingContext" } ], - "ReturnType": "System.Boolean" + "ReturnType": "System.Void" }, { "Name": "Equals", @@ -28930,51 +8264,101 @@ ], "ReturnType": "System.Boolean" }, + { + "Name": "GetInvocationList", + "ReturnType": "System.Delegate[]" + }, { "Name": "GetHashCode", "ReturnType": "System.Int32" }, { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "Clone", + "ReturnType": "System.Object" }, { - "Name": "GetType", - "ReturnType": "System.Type" - } - ] - }, - "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode, Az.StorageCache.private, Version=0.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Item": "Microsoft.Azure.PowerShell.Cmdlets.StorageCache.Runtime.Json.JsonNode" - }, - "Methods": [ - { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "DynamicInvoke", + "Parameters": [ + { + "Name": "args", + "Type": "System.Object[]" + } + ], + "ReturnType": "System.Object" }, { "Name": "GetType", "ReturnType": "System.Type" }, { - "Name": "Equals", + "Name": "ToString", + "ReturnType": "System.String" + } + ], + "Constructors": [ + { + "Name": "", "Parameters": [ { - "Name": "obj", - "Type": "System.Object" + "Name": "object", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "method", + "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" + ] } ] + }, + "System.Object": { + "Namespace": "System", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=8.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=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=8.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=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + }, + "System.IAsyncResult": { + "Namespace": "System", + "Name": "System.IAsyncResult", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Delegate[]": { + "Namespace": "System", + "Name": "System.Delegate[]", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Delegate" + }, + "System.Delegate": { + "Namespace": "System", + "Name": "System.Delegate", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" } } } \ No newline at end of file